Sql - Insert

Data System Architecture

About

insert is a data manipulation language statement.

In an INSERT statement, you define the values with:

Example

create table t(t char(1));
INSERT INTO t SELECT * FROM (VALUES 'a','c','b') t ORDER BY 1;







Share this page:
Follow us:
Task Runner