For example, if you tried to execute the following:
UPDATE suppliers
SET supplier_name 'IBM'
WHERE supplier_id = 1000;
You would receive the following error message:

You could correct this error by adding the missing equal sign, as follows:
UPDATE suppliers
SET supplier_name = 'IBM'
WHERE supplier_id = 1000;
For example, if you tried to execute the following:
SELECT *
FROM suppliers
WHERE supplier_id ! 1000;
You would receive the following error message:

You could correct this error by adding the missing equal sign, as follows:
SELECT *
FROM suppliers
WHERE supplier_id != 1000;
This statement would return all suppliers whose supplier_id is not equal to 1000.