0
我在SQLPLUS光標這裏面查詢SQLPLUS單行子查詢返回不止一行
SELECT last_name, department_id, salary
FROM employees
WHERE salary >(SELECT AVG(salary)
FROM employees
GROUP BY department_id)
ORDER BY department_id;
而且它給了錯誤:
ORA-01427: single-row subquery returns more than one row
我知道,誤差在3線,但我不知道如何解決它,如果有人可以幫助我,我會很感激。
感謝隊友,這真的有幫助。 –
我很高興它有幫助。 – poaca