-1
我一直想要在單個查詢中更新第1行的列'first name'和第2行的'dept_id'列。可以做到嗎? **中的那個是我想更新的那個。使用單個查詢更新不同行中的不同列
last_name first_name dept_id
jerry tom **50**
snow **black** 20
UPDATE EMP2_5
SET dept_id = '50' where last_name = 'jerry'
UPDATE EMP2_5
SET first_name = 'black' where last_name = 'snow'
出現了缺少關鍵字的錯誤爲單查詢 – Jane
@gordon你在第一個'case'中錯過了'end' –
嗨它工作,謝謝 – Jane