You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we can only copy entire table to an external file, for some scenarios, we would like to add a where filter, or combine data from multiple tables.
What does the feature do?
Add support for SQL syntax like:
COPY (SELECT * FROM tbl WHERE ...) TO '/xxx/xxx/output.parquet' WITH (FORMAT = 'parquet');
Similar approaches:
COPY TO can also copy the results of a SELECT query.
What problem does the new feature solve?
Currently we can only copy entire table to an external file, for some scenarios, we would like to add a where filter, or combine data from multiple tables.
What does the feature do?
Add support for SQL syntax like:
Similar approaches:
Implementation challenges
No response
The text was updated successfully, but these errors were encountered: