插入更新与删除

从一个表向另一个表复制
insert into dept_east(deptno,dname.loc) select deptno ,dname,loc from dept where loc in('NEW YORK','BOSTON')



复制表
问题:要创建表,该表于已有表的列值相同
DB2
create table dept_2 like dept

oracle
在CREATE TABLE命令中,使用一个不返回任何行的子查询
create table dept_2 as select * from dept where 1=0

SQL Server
select * into dept_2 from dept where 1=0



你可能感兴趣的:(oracle,sql,SQL Server,db2)