CSV to SQL UPDATE
Generate SQL UPDATEs from CSV
Build UPDATE statements row by row from CSV for PostgreSQL, MySQL/MariaDB, or Microsoft SQL Server. Select one or more key columns for the WHERE clause, choose which fields to update, and review the output before running. Composite keys are supported.
Example output
UPDATE customers
SET "email" = 'ada@example.com',
"status" = 'active'
WHERE "customer_id" = 123;