What is the SQL operator name for "<>"? What is the SQL operator name for "<>"? sql sql

What is the SQL operator name for "<>"?


<> is NOT Equal to, it's the same as !=


It's "not equal". Look in the list of operators for the database you're using, and find the appropriate section (usually "comparison operators"). For example:


It is the not equals operator. Usage:

select *  from tablewhere foo <> 0