How to exclude null value records from query results (1 Viewer)

gilli

New member
Local time
Today, 17:48
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?
 

pbaldy

Wino Moderator
Staff member
Local time
Today, 14:48
Joined
Aug 30, 2003
Messages
36,132
WHERE AliasName Is Not Null
 

gilli

New member
Local time
Today, 17:48
Joined
Aug 24, 2017
Messages
9
Thanks, pbaldy.
It didn't work!
 

pbaldy

Wino Moderator
Staff member
Local time
Today, 14:48
Joined
Aug 30, 2003
Messages
36,132
Then the field isn't null.
 

Users who are viewing this thread

Top Bottom