Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Estou tentando fazer com que apareça só os itens da tabela que me interessam. A tabela de pedidos tem situações e preciso que apareça só os cancelados e em falta. Pra isso fui tentar aplicar o comando where na syntax do script porém não estou conseguindo, como faço para usa-lo. Já tentei usar o comando AND embaixo porém ele fica mostrando como erro. Não sei como usar o comando script
You have the semicolon in the wrong place. And you have a comma too much in the WHERE clause. Try
... (txt, codepage is ...) Where SIT_PED<>'ATT' ;
or
... (txt, codepage is ...) Where not Match(SIT_PED,'ATT','FIN') ;
You have the semicolon in the wrong place. And you have a comma too much in the WHERE clause. Try
... (txt, codepage is ...) Where SIT_PED<>'ATT' ;
or
... (txt, codepage is ...) Where not Match(SIT_PED,'ATT','FIN') ;
@eduardo_r You can use the match function and it is written as below:
where not match(SIT_PED,'ATT','FIN');