PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Comment puis-je obtenir un hachage d'une table entière dans postgresql?

Je sais que c'est une vieille question, mais voici ma solution :

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;