Insert New Row

suggest change
INSERT INTO Customers
VALUES ('Zack', 'Smith', 'zack@example.com', '7049989942', 'EMAIL');

This statement will insert a new row into the Customers table. Note that a value was not specified for the Id column, as it will be added automatically. However, all other column values must be specified.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


INSERT:
*Insert New Row

Table Of Contents