mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
3 lines
71 B
SQL
3 lines
71 B
SQL
update salary
|
|
set sex = case when sex ='m' then 'f' else 'm' end;
|