Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 12.0.0 (中文) » SQL Anywhere 服务器 - SQL 的用法 » 查询和修改数据 » 添加、更改和删除数据 » 使用 INSERT 添加数据

 

将值插入行的所有列

以下 INSERT 语句将一个新行添加到 Departments 表中,为该行中的每列都提供一个值:

INSERT INTO Departments
VALUES ( 702, 'Eastern Sales', 902 );
 注意