SQL根据现有表新建一张表,想新建一张表,新建的这张表结构要跟现有表结构相同,但不要现有表里面的数据!
根据现有表新建一张表,想新建一张表,新建的这张表结构要跟现有表结构相同,但不要现有表里面的数据!说白了,就是想复制现有表的表结构而不要现有表里的数据!!这个SQL怎么写、...
根据现有表新建一张表,想新建一张表,新建的这张表结构要跟现有表结构相同,但不要现有表里面的数据!说白了,就是想复制现有表的表结构而不要现有表里的数据!!
这个SQL怎么写、、 展开
这个SQL怎么写、、 展开
4个回答
展开全部
看你用的什么数据库:
Sql server :
select * into table_new from table_old ; 复制结构和数据
select * into table_new from table_old where 1=2;只复制结构
Oracle:
create table table_new as select * from table_old;复制结构和数据
create table table_new as select * from table_old where 1=0;只复制结构
DB2:
--复制表结构
create table table_name_new as (select * from table_name_old) definition only;
--插入数据
insert into table_name_new (select * from table_name_old);
MySql:
----- 复制表结构及数据到新表
CREATE TABLE 新表 SELECT * FROM 旧表
----- 只复制表结构到新表
CREATE TABLE 新表 SELECT * FROM 旧表 WHERE 1=2
Sql server :
select * into table_new from table_old ; 复制结构和数据
select * into table_new from table_old where 1=2;只复制结构
Oracle:
create table table_new as select * from table_old;复制结构和数据
create table table_new as select * from table_old where 1=0;只复制结构
DB2:
--复制表结构
create table table_name_new as (select * from table_name_old) definition only;
--插入数据
insert into table_name_new (select * from table_name_old);
MySql:
----- 复制表结构及数据到新表
CREATE TABLE 新表 SELECT * FROM 旧表
----- 只复制表结构到新表
CREATE TABLE 新表 SELECT * FROM 旧表 WHERE 1=2
展开全部
//复制了表student 的表结构到 studets中了
select top 0 * into studets from student
select top 0 * into studets from student
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
SQLSERVER:select * into b from a where 1 <> 1 或者select top 0 * into b from a
a是原表,b是现有表。
ORACLE:create table b as select * from a where 1 <> 1
a是原表,b是现有表。
ORACLE:create table b as select * from a where 1 <> 1
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
create table newtable as
select * from oldtable where 1=2
select * from oldtable where 1=2
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询