Not selecting columns from Table in MySQL with NULL values -
Not selecting columns from Table in MySQL with NULL values -
i know if there way next in mysql
select relevant row table excluding columns null values.
for eg :
table :
---------------------------- id hdr1 hdr2 hdr3 ---------------------------- 1 7.8 9.0 null 2 8.0 10.0 7.8 3 7.8 7.8 null ----------------------------
if require row id 1, need sql statement homecoming next :
id hdr1 hdr2 1 7.8 9.0
is possible in mysql.
mysql
Comments
Post a Comment