Ik weet dat dit een oude vraag is, maar dit is mijn oplossing:
SELECT
md5(CAST((array_agg(f.* order by id))AS text)) /* id is a primary key of table (to avoid random sorting) */
FROM
foo f;
Ik weet dat dit een oude vraag is, maar dit is mijn oplossing:
SELECT
md5(CAST((array_agg(f.* order by id))AS text)) /* id is a primary key of table (to avoid random sorting) */
FROM
foo f;