登录 注册
当前位置:主页 > 资源下载 > SQL语言基础中的INSERT语句

SQL语言基础中的INSERT语句

  • 更新:2024-07-07 12:07:26
  • 大小:5.26MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:Informix - 数据库
  • 格式:PPT

资源介绍

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.