I have a query in which I need to find all the rows with a specific column being null.
Ex:
select count(*) from proposal_review_info where reviewerid='xyz' and status=1 and review_result='';
the above query does not work. What is the correct solution for the above query?
Ex:
select count(*) from proposal_review_info where reviewerid='xyz' and status=1 and review_result='';
the above query does not work. What is the correct solution for the above query?