Question Details

No question body available.

Tags

python griddb

Answers (1)

June 19, 2026 Score: 2 Rep: 790,930 Quality: Low Completeness: 40%

Some SQL dialects have as the null-safe equality operator. But as far as I can tell, TQL doesn't have this. It also doesn't have COALESCE() (if it did you could use COALESCE(region, '') != 'US').

So you'll have to check for it explicitly.

SELECT * WHERE region IS NULL OR region != 'US'