3
How do I select in a given column only the different ratings of "X"?
I created select below:
SELECT top 1000*
FROM [tabela_clientes] WITH (NOLOCK)
WHERE STATUS= 'pendente' and status_2= 'pagamento'
and REGIAO= 'sao paulo' -----------> aqui seria apenas diferente de sao paulo.
In the column REGIAO
, I want you to return only customers who are NOT from paul.
Can you please help me?
Thank you so much for helping Leandro. It worked.
– Maikol Oliveira
If an answer solved your problem, mark it as the solution.
– Leandro Angelo