如何在创建new_table时将特定记录从old_table复制到new_table。 (通过单个命令)在Oracle SQL中。
答案 0 :(得分:1)
CTAS,可能(创建表格选择),例如
create table new_table
as
select * From old_table;
答案 1 :(得分:1)
CREATE TABLE table_A AS SELECT * FROM table_B
答案 2 :(得分:0)
create table table1 (column names and types here)
insert table1
select columns from table2
where... your filters here
答案 3 :(得分:0)
从old_table创建表new_table作为select *,其中[condition];