I have this query in Postgres that returns a hash value for every row of my table:
SELECT
md5(CAST((f.*)AS text))
FROM
my_table f;
I want to attach each hash to its corresponding row. How would I take the results for each row and add them to a new column?
2
Answers
This is yours:
It is easy to do. Whether it is a good idea is a another matter.