Insert data into table with SQL INSERT statement

A table named sales:

saleIdmodelIddatesalesPerson
22322020-01-09tgomay
32132020-03-14snedgamon
49142021-08-06tricksahoy
INSERT INTO sales
VALUES (1, 11, '2020-01-01','mhogan');

If you intend to miss out a value, you shouldn’t leave it blank, you should instead use NULL :

INSERT INTO sales
VALUES (1, 11, '2020-01-01', NULL);

The approach above works well if the order of entry matches the order of the table fields. If this is not the case you can specify the order as part of the INSERT statement:

INSERT INTO sales**(employee_id, sale_id, model_id, sale_date)**
VALUES ('mhogan', 1, 11, '2020-01-01',);