For some reason there is an error message that poops up saying
SELECT a.license_nbr,a.last_name,a.first_name,COUNT(DISTI NCT b.plane_type)
2 FROM pilot a, files b
3 WHERE a.license_nbr=b.license_nbr;
SELECT a.license_nbr,a.last_name,a.first_name,COUNT(DISTI NCT b.plane_type)
*
ERROR at line 1:
ORA-00937: not a single-group group function
it works without the COUNT command.. just with b.plane_type
what should i do??