Featured
-
No Featured Found!
Tags
How to check Null/WhiteSpaces/Empty Values in Oracle Query
If you have requirement to filter records where some columnName is either having value Null or have WhiteSpaces or is Empty, you can use following query:
SELECT columnName
FROM tableName
WHERE TRIM(columnName) IS NULL
Simil...