446.sql
来自「Oracle 9i中文版基础培训教程」· SQL 代码 · 共 5 行
SQL
5 行
select emp.empno,emp.ename,emp.job,emp.sal
from scott.emp,scott.dept
where exists
(select * from scott.emp where scott.emp.deptno=scott.dept.deptno);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?