Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Write Table now available in Qlik Cloud Analytics: Read Blog
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Script, sql query: Where .... <> null

Hi,

I need some help. I´m trying to load data from an ODBC, but I don´t want to load null values. I´m trying to use a where clause in the script, but I don´t know how to write the sql-qeury.

Thanks in advance

1 Solution

Accepted Solutions
jagan
Partner - Champion III
Partner - Champion III

Hi,

You can try IS NOT NULL clause in WHERE like below

Example:

SELECT

*

FROM Employee

WHERE FullName IS NOT NULL;

OR

SELECT

*

FROM Employee

WHERE Len(FullName) > 0;

Regards,

Jagan.

View solution in original post

7 Replies
pablolabbe
Partner Ambassador
Partner Ambassador

To filter null values in the database layer when reading from ODBC, it depends on the database vendor you use.

Did you find a solution to your question? Mark the solution as accepted and if you found it useful, press the like button! | Follow me on Linkedin
Not applicable
Author

‌We use pervasive.

rupamjyotidas
Specialist
Specialist

Might Help:

Where Len(PrimaryKey)>0 or Not ISNULL(PrimaryKey)

Anonymous
Not applicable
Author

SQL;

SELECT * FROM TABLE_NAME WHERE COLUMN_NAME IS NOT NULL

Replace TABLE_NAME with your table name and COLUMN_NAME with your column name

jagan
Partner - Champion III
Partner - Champion III

Hi,

You can try IS NOT NULL clause in WHERE like below

Example:

SELECT

*

FROM Employee

WHERE FullName IS NOT NULL;

OR

SELECT

*

FROM Employee

WHERE Len(FullName) > 0;

Regards,

Jagan.

lakshmikandh
Specialist II
Specialist II

yes query differs based on database. which one are you using marcci22

lakshmikandh
Specialist II
Specialist II

Check this one PostgreSQL - NULL Values