What word is missing from the following SQL statement?



insert into tablename ________(909, 'text');

(Please specify the missing word using lower-case letters only.)

Answer: values

題解

INSERT敘述的基本用法如下:

INSERT INTO tablename (column1, column2, column3, ...) VALUES (value1, value2, value3, ...)

如果要使用預設的欄位順序,也可以省略成:

INSERT INTO tablename VALUES (value1, value2, value3, ...)

SQL的關鍵字沒有區分大小寫,所以「VALUES」也可以寫成「values」。