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
MySQL file upload uses a LOAD DATA statement to import file data into a table. It lets you specify whether you'd like to ignore or replace on duplicate key.
Postgres file upload uses a COPY FROM statement. It does not let you specify duplicate key behavior. There are workarounds like this, where we can import to a temporary table, and then specify on conflict behavior on upsert
The text was updated successfully, but these errors were encountered:
MySQL file upload uses a
LOAD DATA
statement to import file data into a table. It lets you specify whether you'd like toignore
orreplace
on duplicate key.Postgres file upload uses a
COPY FROM
statement. It does not let you specify duplicate key behavior. There are workarounds like this, where we can import to a temporary table, and then specify on conflict behavior on upsertThe text was updated successfully, but these errors were encountered: