
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
Accepted Solutions

.png)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
To filter null values in the database layer when reading from ODBC, it depends on the database vendor you use.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
We use pervasive.


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Might Help:
Where Len(PrimaryKey)>0 or Not ISNULL(PrimaryKey)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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

.png)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yes query differs based on database. which one are you using marcci22


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Check this one PostgreSQL - NULL Values
