This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Nando
nando.ac
did:plc:vc6ixwajdbjo5tjndmdc57tx
This is how you export a #postgres query to a #csv using #psql
psql $DATABASE_URL -c "\copy (SELECT account_id, email, COUNT(*) AS duplicate_count FROM customers GROUP BY account_id, email HAVING COUNT(*) > 1) TO '.' WITH CSV HEADER;"
2024-09-05T12:53:05.633Z