--只是建立ta表,与emp表结构相同,并不添加数据
create table ta as
select * from scott.emp
where 1=0;
--建立tb表,结构与dept结构相同,将dept表中的数据导入其中:
create table tb as
select * from scott.dept
where 1=1;
数据库创建表结构
最新推荐文章于 2025-06-23 21:14:58 发布
--只是建立ta表,与emp表结构相同,并不添加数据
create table ta as
select * from scott.emp
where 1=0;
--建立tb表,结构与dept结构相同,将dept表中的数据导入其中:
create table tb as
select * from scott.dept
where 1=1;