carpetbelly
Technical User
Just using the standard query builder in access the SQL I get is the following
Now this just doesn't return any data I have in the table tblData.
if I remove the where clause then it returns all the data as you'd expect. Obv it's the where clause that's going wrong but my SQL is rather rusty lately. Anyone able to give some advice?
Code:
SELECT tblData.OriginatorName, tblData.DateIncidentRaised, tblData.IssueTitle, tblData.System, tblData.IncidentStatus
FROM tblData
WHERE (((tblData.IncidentStatus)<>"Closed"));
if I remove the where clause then it returns all the data as you'd expect. Obv it's the where clause that's going wrong but my SQL is rather rusty lately. Anyone able to give some advice?