Created 05-26-2016 08:25 AM
can any one help me with query to find the details with null or empty column value from pheniox .
Created 05-26-2016 08:40 AM
In Phoenix, an empty string is same as null.
You can run below query:-
select * from table where col_name is null.
Created 05-26-2016 08:40 AM
In Phoenix, an empty string is same as null.
You can run below query:-
select * from table where col_name is null.
Created 05-26-2016 08:42 AM
Thanks it works...!!!!!