The following three operators have the identical meaning:
!=, ^=, <>
select name from worker where gender <> 'male';
Another way to test for inequality it to use "not in"
select name from worker where type not in ('manager','contractor');
The following three operators have the identical meaning:
!=, ^=, <>
select name from worker where gender <> 'male';
Another way to test for inequality it to use "not in"
select name from worker where type not in ('manager','contractor');