I am attempting in Access to show some data in a listbox, but only data which meets a certain condition should be displayed, however my SQL is flagging the error;
Syntax Error (missing operator) in query expression tblItem.[Status] WHERE (tblItem.[Status] = 'Unassigned
Here is my full query
`SELECT tblItem.[Serial Number],
tblItem.[Item Description],
tblItem.[Model],
tblItem.[Status]
WHERE (tblItem.[Status] = 'Unassigned') FROM tblItem;`
Where am i going wrong?
Remember the syntax for
select:SELECT…FROM…WHERE…ORDER BY