-- 如果工资为null,按0处理 -- 函数: ifnull(字段, 默认值) : 如果指定字段的内容是null, 就按默认值处理 select name, ifnull(salary, 0) from students;
例子
-- 4. 查询students表里每个用户的姓名和 总收入:工资+奖金5000 select name, salary + 5000 from students; select name, ifnull(salary, 0) + 5000 from students;