Skip to content

INSERT Statement

OneAndonlyFinbar edited this page Feb 11, 2022 · 5 revisions

The INSERT command 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.

Syntax

INSERT
[INTO] table
[(column_name), [column_name,]]
[VALUES (value_list)]

Examples

Inserting a row

INSERT INTO table (column1, column2) VALUES (value1, value2)

Clone this wiki locally