I'm considering to use 'COPY' command to load the text file into table A.
COPY myTable FROM value.txt (DELIMITER('|'));
A table has already 10 rows and the value.txt file also has the same 10 rows but only 1 column value(CheckTime) is different from the previous table data. With SQLite 'on conflict replace' feature, I could manage to keep the other column values the same and only CheckTime value is refreshed.
I need to the same thing in PostgreSQL.
How can I do this thing? Can you share your idea?