Comparing two rows : Compare Row « Select Query « PostgreSQL






Comparing two rows


postgres=#
postgres=# SELECT ROW(1,2.5,'this is a test') = ROW(1, 3, 'not the same');
 ?column?
----------
 f
(1 row)

postgres=#
           
       








Related examples in the same category