IF(条件,条件true,条件false)
sex字段m,f 互换
update salary set sex = if(sex='m', 'f', 'm')
IFNULL(a, b)
如果 a 为真就返回 a,否则返回 b