For example, you tried to execute the following INSERT statement:
INSERT INTO supplier
(supplier_id, supplier_name)
VALUES (24553, 'IBM')
ORDER BY supplier_id;
You can correct the INSERT statement by removing the ORDER BY clause as follows:
INSERT INTO supplier
(supplier_id, supplier_name)
VALUES (24553, 'IBM');
For example, you tried to execute the following DELETE statement:
DELETE FROM supplier
WHERE supplier_name = 'IBM'
ORDER BY supplier_id;
You can correct the DELETE statement by removing the ORDER BY clause as follows:
DELETE FROM supplier
WHERE supplier_name = 'IBM';