I have a integer column which is empty. How to query that I tried
select * from table where target_status_code = null
but it did not return anything
I have a integer column which is empty. How to query that I tried
select * from table where target_status_code = null
but it did not return anything
Probably you should use is null to check the integer column which is empty:
select * from table where target_status_code is null