PostgreSQL/Select Query/Compare Row
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=#
postgres=#
postgres=# SELECT ROW(1,2.5,"this is a test") = ROW(1, 3, "not the same");
?column?
----------
f
(1 row)
postgres=#