leetcode 627. Swap Salary
将f改为m,m改为f。
update salary set sex = IF(sex = 'm','f','m');
update salary set sex = ( CASE sex WHEN 'm' then 'f' ELSE 'm' END );
update salary set sex = CHAR(ASCII(sex) ^ ASCII('f') ^ ASCII('m'));
注意:
case在select后面,group by,update等地方都可以使用。
【本文章出自博客园willaty,转载请注明作者出处,误差欢迎指出~】