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

Popular posts from this blog

c - Compilation of a code: unkown type name string -

java - Bypassing "final local variable defined in an enclosing type" -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -