0
I don't know why it doesn't work
Complete to extract information about the records that have an id different from 1 SELECT * FROM orders WHERE customer_id != 1
3 Answers
+ 4
Check the spellings of table name and column name again.. Put a semicolon after the statement.
It not work then may be it's a bug so then report it by info@sololearn.com along with screen shots.
+ 3
It may be that the brand of SQL does not accept != for not equal. Instead, use <>.
0
SELECT * FROM orders
WHERE customer_id <> 1