I'm just starting to read the SQL, and I'm uncertain about something. Keeping in mind I'm somehat rusty on this and was no SQL expter to begin with. But I thought the following looked wrong...
I thought this sort of things was done with the IN operator. In other words, something like:
AND employee.sex = (SELECT employee.sex FROM
I thought this sort of things was done with the IN operator. In other words, something like:
AND employee.sex IN (SELECT employee.sex FROM
Comment