IT猫扑网 ● 文章教程
分类分类
2015-06-28 00:00作者:网管联盟
在sql server以及类似数据库中,可以使用select * into a from b where xxx来自动建立select出来的字段组成的表。在oracle中则使用如下格式可以建立
create table a as select * from b where xxxx
这样可以自动把表b select的数据自动变成表a
相关文章