> On May 19, 2024, at 09:54, Rich Shepard <rshep...@appl-ecosys.com> wrote: > > Specifically, in the 'people' table I want to change the column 'active' > from false to true for 457 specific person_id row numbers. UPDATE people SET active=true WHERE id IN (...); The ... can either be an explicit list of the ids, or a SELECT id WHERE if you have a predicate that selects the appropriate ids.
- Updating 457 rows in a table Rich Shepard
- Re: Updating 457 rows in a table Christophe Pettus
- Re: Updating 457 rows in a table Rich Shepard
- Re: Updating 457 rows in a table Christophe Pettus
- Re: Updating 457 rows in a table Rich Shepard
- Re: Updating 457 rows in a table Alban Hertroys
- Re: Updating 457 rows in a tab... Rich Shepard
- Re: Updating 457 rows in a table Ray O'Donnell
- Re: Updating 457 rows in a table Rich Shepard
- Re: Updating 457 rows in a table Muhammad Ikram
- Re: Updating 457 rows in a table Rich Shepard