sal(salary)、name、empno(employee number) の 3 つの「NOT NULL」フィールドで構成されるテーブル「EMP」から、2 番目に高い給与を選択するための革新的なクエリを誰かが提案できますか?
私は1つを持っている:
Select sal
from EMP A
where 1 = (select count(DISTINCT SAL) from EMP B whre A.sal < B.sal);
select DISTINCT sal
from emp a
where 1 = (select count(DISTINCT sal) from emp b where a.sal < b.sal);