こんにちはみんな私は次の問題に関連する次の質問があります
From tables emp and dept find number of employees working in every departments by their jobs.
Showing number not more than 5.
私は次のことを書きました
select count(*)
from emp e,dept d
where e.department_id=d.department_id and count(*)<5
group by e.department_id,e.job;
しかし、それは私に次のエラーを示しています
Error at Command Line:3 Column:23
Error report:
SQL Error: ORA-00933: SQL command not properly ended
00933. 00000 - "SQL command not properly ended"
*Cause:
*Action:
問題は何ですか?助けてください