Skip to content

INSERT Statement

OneAndonlyFinbar edited this page Jan 29, 2022 · 5 revisions

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