1. 新增乙個表,通過另乙個表的結構和資料
create table xthame.tab1 as select * from dsknow.combdversion
2. 如果表存在: insert into tab1 select * from tab2;
3.同乙個表中,將a欄位的指賦給b欄位: update table_name set b = a;
4. 將乙個表的字段資料插入到另乙個表的字段資料中 insert into xthame.tab1(pk_bdversion,vbdcode) select pk_bdversion,vbdcode from dsknow.combdversion;
5. 第4點的延伸,多個表的多個字段,插入同乙個表的多個字段。
insert into xthame.button (button_id, button_name, button_code) select a.pk_examquest, b.pk_bdversion,a.vquestname from dsknow.combdversion b ,dsknow.rqt_examquest a where a.pk_examquest='1001sx1000000000jobv' and b.pk_bdversion='1000bdv1000010101001';
oracle把乙個表的資料複製到另乙個表中
新增乙個表,通過另乙個表的結構和資料 create table table1 as select from table2 如果表存在 insert into table1 select from table2 同乙個表中,將a欄位的值賦給b欄位 update table name set b a 將...
把乙個表中的資料插入到另外乙個表中
1.在oracle中可以用下面兩種 01 create table newtable as select from oldtable 用於複製前未建立新錶newtable不存在的情況 02 insert into newtable select from oldtable 已經建立了新錶newtab...
Mysql中把乙個表的資料匯入另乙個表中
類別一 如果兩張張表 匯出表和目標表 的字段一致,並且希望插入全部資料,可以用這種方法 insert into 目標表select from 表 例如,要將 articles 表插入到 newarticles 表中,則可以通過如下sql語句實現 insert into newarticles sel...