- 插入多行數(shù)據(jù) oracle
insert all into product values ('1','2','3')
into product values('2','3','4')
into product values('4','5','6');
- 如果在創(chuàng)建表的時候設定了列的默認值,那么可以在insert時使用默認值進行插入數(shù)據(jù)
兩種方式:
- 顯式 使用default
- 隱式 插入的時候,默認值的列省略