兩張表進行資料的拷貝,最常用的拷貝語句是:
insert into select 和 select into from
但是請絕對的注意:
在oracle中select into from不可以使用-----原因很簡單:select into是pl/sql language 的賦值語句!如果使用則oracle會丟擲0ra-00905:missing keyword的異常!
但是可以用create table select代替該功能!!!具體參考下面測試**!
但是在sql server中可以正常使用。
先做個小測試:
-- 建表
create table test1(
id number primary key,
testname varchar2(20),
createtime date,
falg varchar2(10)
);create table test2(
id number primary key,
testname varchar2(20),
createtime date,
falg varchar2(10)
);-- 插入測試資料
insert into test1 values(1,'測試資料1....1',sysdate-2,'n');
insert into test1 values(2,'測試資料1....2',sysdate-2,'n');
insert into test1 values(3,'測試資料1....3',sysdate-2,'n');
commit;
-- 使用insert into select 拷貝資料(注意紅色部分,可以自動生成id序列值)
insert into test2(id,testname,createtime,falg)
select seq_test.nextval,t1.testname,t1.createtime,t1.falg from test1 t1;
-- 使用 create table select 建立被拷貝資料(注意要刪除test2表先)
create table test2 as select t1.id,t1.testname,t1.createtime,t1.falg from test1 t1;
-- select into from 不可以,拋異常
select t1.id,t1.testname,t1.createtime,t1.falg into test2(id,testname,createtime,falg)
from test1 t1;
-- pl/sql language 中select into賦值語句的測試使用
create or replace procedure test1_prod
isaa varchar2(100);
begin
select t1.testname into aa from test1 t1 where id=1;
dbms_output.put_line('t1.testname= '|| aa);
end;
總結:資料拷貝,建議使用insert into select; 使用insert into select時如果對拷貝表生成id序列值,需要在select中以查詢出的形式從sequence中查詢出,再插入拷貝表;比如:
insert into test2(id,testname,createtime,falg)
select seq_test.nextval,t1.testname,t1.createtime,t1.falg from test1 t1;
Oracle中資料表查詢拷貝
b 一 oracle資料庫中,把一張表的查詢結果直接生成並匯入一張新錶中。b 例如 現有只有a表,查詢a表,並且把結果匯入b表中。使用如下sql語句 sql create table b as select from a b 二 oracle資料庫中支援把查詢結果匯入到另外一張表中。b 例如 有兩個...
2 資料表的基本操作 建立資料表
在資料庫中,資料表是資料庫最重要 最基本的操作物件,是資料儲存的基本單位。建立資料表的過程就是規定資料列的屬性的過程,同時也是實施資料完整性約束的過程。建立資料表的語法形式 create table 表名 欄位名1 資料型別 列級別約束 預設值 欄位名2 資料型別 列級別約束 預設值 表級別約束 其...
資料表的操作
表是組成資料庫的基本的元素 表的基本操作有 建立 檢視 更新 刪除。表中的資料庫物件包含列 索引 觸發器。列 屬性列,建立表時指定的名字和資料型別,索引 根據制定的資料庫表建立起來的順序,提供了快速訪問資料的途徑且可以監督表的資料 觸發器 指使用者定義的事務命令集合,當對乙個表中的資料進行插入 更行...