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.
「backfill_target」という名前の列があり、その値が 1 であるテーブルがありますが、300 行すべてに対してこれを 20 に変更する必要があります。どうすればよいですか?
編集:
これが私のテーブルの簡略版です
ID|name |backfill_target|first_record|second_record 0 | test| 1 |52 |54
試す、
UPDATE tableName SET backfill_target = 20 WHERE backfill_target = 1
すべての行を更新したいとします。
UPDATE table SET backfill_target = 20