For example, if you tried to execute the following INSERT statement:
INSERT INTO suppliers
(supplier_id, supplier_name, contact_name)
VALUES
(1000, 'Microsoft');
You would receive the following error message:

You could correct this error by reducing the number of columns:
INSERT INTO suppliers
(supplier_id, supplier_name)
VALUES
(1000, 'Microsoft');
Or by increasing the number of values to insert:
INSERT INTO suppliers
(supplier_id, supplier_name, contact_name)
VALUES
(1000, 'Microsoft', 'Bill Gates');
For example, if you tried to execute the following:
| SELECT * |
| FROM suppliers |
| WHERE (supplier_id, contact_name) IN |
(SELECT supplier_id |
|
FROM orders); |
You would receive the following error message:

You could correct this error by returning two columns in the sub-select as follows:
| SELECT * |
| FROM suppliers |
| WHERE (supplier_id, contact_name) IN |
(SELECT supplier_id, order_contact |
|
FROM orders); |