Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
別の列の条件に基づいて列の行を削除したい。例えば:
DELETE FROM table_name column_name WHERE another_column_name='some value';
「列を削除する」ことを意味する場合は、次のように設定できますnull。
null
UPDATE table_name SET column_name = null WHERE another_column_name = 'some value'