赞
踩
使用as关键字来复制表的数据与结构,具体操作如下:
以emp表为例:
create table newemp as select * from emp
执行上面的语句就创建了一张newemp表,里面的数据与结构都和emp表相同。
create table newemp as select sal from emp
执行上面的语句就创建了一张newemp表,里面的sal列的数据和emp表sal列的数据相同。
create table newemp as select sal from emp where 1=2
执行上面的语句就创建了一张newemp表,里面的列的属性等结构和emp表相同。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。