How to exclude null value records from query results

gilli

New member
Local time
Yesterday, 21:27
Joined
Aug 24, 2017
Messages
9
Hi,
one of the fields in my query is calling a function which returns a string value or null values. I want to exclude records that has null value in that field. I do have alias name to that function for that field. This is how I am writing the where condition in the query.

where aliasName> "";

But this is not working. What am I doing wrong?
Please guide me through this?
Thanks for any help?
 
WHERE AliasName Is Not Null
 
Thanks, pbaldy.
It didn't work!
 
Then the field isn't null.
 

Users who are viewing this thread

Back
Top Bottom