Mega Code Archive

 
Categories / MySQL Tutorial / Comparison Functions Operators
 

Compare string value using the Not equal operator

mysql> mysql> SELECT 'AB' <> 'ABC'; +---------------+ | 'AB' <> 'ABC' | +---------------+ |             1 | +---------------+ 1 row in set (0.00 sec) mysql>