How to update all columns with INSERT … ON CONFLICT …?
The UPDATE syntax requires to explicitly name target columns. Possible reasons to avoid that: You have many columns and just want to shorten the syntax. You do not know column names except for the unique column(s). “All columns” has to mean “all columns of the target table” (or at least “leading columns of the table”) … Read more