Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

query to find the null table detail in Phoenix

avatar

can any one help me with query to find the details with null or empty column value from pheniox .

1 ACCEPTED SOLUTION

avatar

In Phoenix, an empty string is same as null.

You can run below query:-

select * from table where col_name is null.

View solution in original post

2 REPLIES 2

avatar

In Phoenix, an empty string is same as null.

You can run below query:-

select * from table where col_name is null.

avatar

Thanks it works...!!!!!