Postgresql – Insert hash value of a row as new column in Postgres
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…