-
SQL语言基础中的INSERT语句
资源介绍
INSERT语句
*
INSERT INTO table [(column [, column...])]
VALUES (value [, value...]);
使用 INSERT 语句向表中增加新行.
使用这种方法只能一次插入一行数据.
*
Adding a New Row to a Table (continued)
You can add new rows to a table by issuing the INSERT statement.
In the syntax:
table is the name of the table
column is the name of the column in the table to populate
value is the corresponding value for the column
Note: This statement with the VALUES clause adds only one row at a time to a table.
- 上一篇: 插入新行-SQL语言基础
- 下一篇: voss映射--2012数模a