Create 627.sql

This commit is contained in:
Kirigaya Kazuto 2018-06-20 23:13:21 +08:00 committed by GitHub
parent cefeb5d972
commit 50585a4841
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
LeetCode-CN/627.sql Normal file
View File

@ -0,0 +1,4 @@
update salary set sex = case sex
when 'f' then 'm'
when 'm' then 'f'
end