specify the name of the table you want to add a row to (INSERT INTO invoices), along with an optional column list (vendor_id, invoice_number, invoice_total). INTO is optional. Follow it with a VALUES clause.
VALUES (97, '456789', 8344.50) the values need to be in the same order as the columns list.