轉自: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 [舊資料表名]