I am trying to do a checksum for change detection on rows, so I can compare 2 tables. One way I have done in the past is by concatenation of all columns and then do a hash. How can I concat all columns?
SELECT concat(*) form TABLE;
does not work
I also tried the PostgreSQL variant of
select r::text from sandbox.abs_frmt r;