Opposite of isnull in mysql -
Opposite of isnull in mysql -
to whether field null can do:
select id, isnull(sd_vod_retail_price) main_territorypricing title_id=904534727
how check see whether field not null? like:
select id, isnotnull(sd_vod_retail_price) ?
you can utilize !
operator:
select id, !isnull(sd_vod_retail_price) main_territorypricing title_id=904534727
mysql
Comments
Post a Comment