首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

札记通过查询创建表

2013-02-19 
笔记通过查询创建表Oracle 感觉语法比较易读:create table1 as select * from table2SqlServer 用Oracle

笔记通过查询创建表

Oracle 感觉语法比较易读:

create table1 as select * from table2;

SqlServer 用Oracle的方式行不通,搜索发现下面的方法:

select * into T_TableRecordDetail from V_TableRecordDetail where 1=2;

?

热点排行