insert

  • 插入多行数据 oracle
insert all into product values ('1','2','3')
           into product values('2','3','4')
           into product values('4','5','6');
  • 如果在创建表的时候设定了列的默认值,那么可以在insert时使用默认值进行插入数据

两种方式:

  1. 显式 使用default
  2. 隐式 插入的时候,默认值的列省略

你可能感兴趣的:(insert)