zoukankan      html  css  js  c++  java
  • sql处理null值

    IFNULL(expr1,expr2) 
    如果expr1不是NULL,IFNULL()返回expr1,否则它返回expr2。IFNULL()返回一个数字或字符串值。



    select
    (case when a.checktype=0 then 'GO' else 'back' end ) checktype,
    (case when a.checkcotunt=0 then 'left' end ) checktype

    from checkinfo a
  • 相关阅读:
    BD String
    1114
    1083
    1084
    1108
    1087
    1145
    1217
    1164
    反射
  • 原文地址:https://www.cnblogs.com/j2ee-web-01/p/6797043.html
Copyright © 2011-2022 走看看