For example, if you had tried to use the column named "customers" in an INSERT statement as follows:
INSERT INTO suppliers
(supplier_id, supplier_name)
VALUES
(1, customer_name);
You would receive the following error message:

You could correct the INSERT statement by including a character value, instead of the column name as follows:
INSERT INTO suppliers
(supplier_id, supplier_name)
VALUES
(1, 'IBM');
Or if you needed to include a column name, you could rewrite the INSERT statement with a sub-select as follows:
INSERT INTO supplier
(supplier_id, supplier_name)
SELECT account_no, customer_name
FROM customers
WHERE city = 'Newark';