User447704385 posted
I am tryin to get records where certain fields are empty, but the following sql does not give me correct result. Please suggest corrections.
Thanks for your help.
SELECT [specimen Type], [Year], [Lab Number]
From [PET Fish] where
ltrim(rtrim([Diagnosis])) = '' or
ltrim(rtrim([Results])) = '' or
ltrim(rtrim([Sign out Date])) = ''
It should return all records, but it returns none.