三者基于表的不同的建表方式
mysql
create table newtablename like oldtablename
mssql
select * into newtablename from oldtablename
oracle
create table newtablename as select * from table
本文介绍了在MySQL、MSSQL及Oracle三种不同数据库中基于现有表创建新表的方法,包括使用LIKE、SELECT INTO及AS SELECT语句的具体操作。
三者基于表的不同的建表方式
mysql
create table newtablename like oldtablename
mssql
select * into newtablename from oldtablename
oracle
create table newtablename as select * from table
4667
1063
423
4827

被折叠的 条评论
为什么被折叠?