Options
- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Solved
Go to solution
query to find the null table detail in Phoenix
Labels:
- Labels:
-
Apache Phoenix
Guru
Created ‎05-26-2016 08:25 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
can any one help me with query to find the details with null or empty column value from pheniox .
1 ACCEPTED SOLUTION
Guru
Created ‎05-26-2016 08:40 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In Phoenix, an empty string is same as null.
You can run below query:-
select * from table where col_name is null.
2 REPLIES 2
Guru
Created ‎05-26-2016 08:40 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In Phoenix, an empty string is same as null.
You can run below query:-
select * from table where col_name is null.
Guru
Created ‎05-26-2016 08:42 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks it works...!!!!!
