ossc-db / pg_bulkload

High speed data loading utility for PostgreSQL
http://ossc-db.github.io/pg_bulkload/index.html
Other
443 stars 75 forks source link

How to filter rows (WHERE CLAUSE) #160

Open Fabiencdp opened 8 months ago

Fabiencdp commented 8 months ago

Is there a way to filter out some rows from a CSV with a FILTER or any other way?

Like with Postgres COPY:

COPY "schema"."table"
FROM 'input.csv' (format csv)
WHERE some_column = 'some value'

Thanks for your help