摘要:
1、复制工作表(练习使用) create table myemp as select * from emp where 1=1 1=1 1:1复制表 select * from myemp; create table myyemp as select * from emp where 1=2 1=2 阅读全文
摘要:
问题提出 1、where 里的子查询 例:查询工资比7654高的员工编号,姓名,工资。 select * from emp where empno=7654; select sal from emp where empno=7654; select empno,ename,sal from emp 阅读全文