自学数据库,如何创建数据库表格?
网友解答: 1、直接创建:create table t(name varchar2(50 char)); 2、创建与表A结构相同的空表:create table a_tmp as sel
1、直接创建:create table t(name varchar2(50 char)); 2、创建与表A结构相同的空表:create table a_tmp as select * from A where 1=0; 3、复制表A全部(或部分)数据:create table a_tmp as select * from A (where a.xxx=xxx)