SQL查詢練習二(From LeetCode)

    請選用MySQL進行測試. 1.將男性和女性的工資互換(E) 思路:使用case when進行條件判斷,在使用update進行修改 1 update salary 2 set sex = 3 case sex 4 when 'm' then 'f' 5 else 'm' 6 end View Code 2.找出description不是boring且id是奇數的電影(E)
相關文章
相關標籤/搜索