Click here to Skip to main content
15,884,790 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to get null value row of multiple columns of single table in sql server.

i have some table with multiple column and each column contain some value or also null value .

so how to get row with contain null value of each column.
Posted

1 solution

SQL
select *
from yourtable
where COALESCE(col1,col2,col3,'allnull') = 'allnull'
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900