我想选择尚未发布工作的用户。
我试过这个:
SELECT
e.id, e.companyName, ee.emailAddress, ee.firstName, ee.surname
FROM
employer as e, country as country, employerUser as ee , countryRegion as re, job as j
WHERE
country.iso2=e.countryISO2FK AND ee.employerIDFK=e.id AND ee.originalUser=1 AND country.iso2='GB' AND (e.regionCodeFK ='GTL' AND e.regionCodeFK = re.code OR e.regionCodeFK ='' OR e.city ='' ) AND e.status=1 AND e.isActive=1 AND e.id=j.employerIDFK AND j.employerIDFK IS NULL
有谁知道我做错了什么?