D
danprhayes
Guest
SELECT Wards.Wards FROM Wards LEFT JOIN Returns ON Wards.Wards = Returns.TheWard WHERE (((Returns.TheWard) Is Null)) ORDER BY Wards.Wards
Using the SQL above on the following tables:
Wards containing field Wards
Returns containing many fields including TheWard and TheMonth
Wards is a list of all areas that I should recieve a monthly input from. Returns contains those inputs and so I use this SQL to tell me which wards have not submitted BUT I cannot define TheMonth to say March for example.
Help!
Many thanks
Using the SQL above on the following tables:
Wards containing field Wards
Returns containing many fields including TheWard and TheMonth
Wards is a list of all areas that I should recieve a monthly input from. Returns contains those inputs and so I use this SQL to tell me which wards have not submitted BUT I cannot define TheMonth to say March for example.
Help!
Many thanks