2011年9月25日

ORACLE 第二步之SQL查询和SQL函数

摘要: --利用现有的表创建表 create table emp_copy as select * from emp; --利用现有的表创建表,不插入emp表中记录。 create table emp_copy as select * from emp where 1=2; --插入来自其它表中的记录 insert into emp_copy select * from scott.emp; -... 阅读全文

posted @ 2011-09-25 23:43 Sanic 阅读(401) 评论(0) 推荐(0)

导航