- Explore
- Collaborate
- Visualize
- Connect
- Pricing
- Updates
- We're hiring
How to Update in PostgreSQL
-- All rows
update users set updated_at = now();
-- Some rows
update users set updated_at = now() where id = 1;
-- All rows
update users set updated_at = now();
-- Some rows
update users set updated_at = now() where id = 1;