-
Notifications
You must be signed in to change notification settings - Fork 0
INSERT Statement
OneAndonlyFinbar edited this page Feb 11, 2022
·
5 revisions
The
INSERTcommand is currently functioning improperly, this issue is #1 in priority to be fixed
The INSERT command can be used to insert a single row into a table.
INSERT
[INTO] table
[(column_name), [column_name,]]
[VALUES (value_list)]Inserting a row
INSERT INTO table (column1, column2) VALUES (value1, value2)