-
Notifications
You must be signed in to change notification settings - Fork 431
INSERT INTO
Rene Saarsoo edited this page Aug 1, 2022
·
7 revisions
SQL standard specifies the following CREATE TABLE syntax:
INSERT INTO table_name
All dialects (except Hive) suppurt this syntax, plus a bunch of extra stuff:
INSERT [INTO] table_name
DB2:
INSERT INTO table_name
Hive:
INSERT INTO TABLE table_name
INSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE] [INTO] table_name
REPLACE [LOW_PRIORITY | DELAYED] [INTO] table_name
INSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE] [INTO] table_name
REPLACE [LOW_PRIORITY | DELAYED] [INTO] table_name
N1QL:
INSERT INTO table_name
INSERT [hint] [ALL] INTO
INSERT INTO table_name
INSERT INTO table_name
INSERT [INTO | OVERWRITE] [TABLE] table_name
INSERT [OR {ABORT | FAIL | IGNORE | REPLACE | ROLLBACK}] INTO table_name
REPLACE INTO table_name
INSERT [TOP ( expression ) [PERCENT]] [INTO] table_name
INSERT INTO table_name