Is there a way I can use a combination of hard values and a subquery to insert into a table with one command?
For example:
INSERT INTO suppliers (su
Just add it with your SELECT fields.
SELECT
INSERT INTO suppliers (supplier_id, supplier_name, supplier_type) SELECT account_no, name, 3 AS supplier_type FROM customers WHERE city = 'San Diego';