摘要:
(1)插入数据/单行/insert into scott.emp(empno,ename,hiredate) values(1000,'jack','20-10月-2008');/批量/insert into scott.emp(empno,ename,hiredate)(select empno+100,ename,hiredate from scott.emp);(2)表复制create ta... 阅读全文
摘要:
公司很快就要上Oracle ERP,不懂Oracle实在不行呐,在学习的过程中总结了一些基本的操作语句,摘录下来与大家共享,多多指教.(1) 查询所有的记录 select * from scott.emp (2) 查询所有记录的某些字段 select empno,ename,job from scott.emp (3) 查询某些字段的不同记录 select distinct job from... 阅读全文