2017-05-28 78 views
0

我想從WHERE條件中刪除一列中的特定值/數據。換句話說,我不想刪除整行。可能嗎?使用update想要刪除表中的特定列

+1

編輯你的問題,並提供樣本數據,預期的效果,和你想做什麼更好的解釋。 –

+0

檢查https://stackoverflow.com/questions/4732838/delete-specific-values-from-column-with-where-condition – Rohan

回答

1

您可以重新設定值:

update t 
    set col = NULL 
    where . . .;