码迷,mamicode.com
首页 > 其他好文 > 详细

create table 使用select查询语句创建表的方法分享

时间:2018-06-21 00:14:23      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:get   创建   ora   分享   rac   IV   style   targe   O365   

转自:http://www.maomao365.com/?p=6642


摘要:
下文讲述使用select查询语句建立新的数据表的方法分享

---1 mysql 
   create table `新数据表名`
     select  *  from `旧数据表名`;
--------------------------------
---2 oracle
  create table 新数据表名 as select * from 旧数据表名
--------------------------------
--3 mssql 
  select * into [新数据表名] from [旧数据表名]

 

create table 使用select查询语句创建表的方法分享

标签:get   创建   ora   分享   rac   IV   style   targe   O365   

原文地址:https://www.cnblogs.com/lairui1232000/p/9206465.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!