+ 1
Sql operator and function
I want to select a list of every individual in a table (customer) who are not in a location say 'brazil' ... Should I use the NOT IN function or '! =' or `<>` Which of the three is best for the WHERE CLAUSE to work with and give accurate results?
2 Answers
0
select (what u want to select) from customer where location not in ('brazil');
try this out..it should work
0
Alright thanks