oracle中空值判断函数 nvl(exp, 1) 如果exp为空,返回1, 否则返回exp本来的值 nvl2(exp, 1, 2) 如果exp为空,返回2,否则返回1 mysql中类似的函数ifnull(exp, 1) 同nvl