rel8 icon indicating copy to clipboard operation
rel8 copied to clipboard

Anonymous ROW expressions?

Open AnthonySuper opened this issue 3 years ago • 1 comments

Postgres allows you to create anonymous rows for use in queries. This is quite helpful when doing keyset pagination. The following SQL...

SELECT * FROM users
WHERE (userRank, id) > (10, 100)

is much nicer than...

SELECT * FROM users
WHERE userRank > 10
OR (userRank = 10 AND id > 100)

The already-existing Composite type comes close, but it requires that the composite be named, instead of just an anonymous row. Would there be interest in support for this functionality in this library? I could try to make a patch if so.

AnthonySuper avatar Nov 19 '22 22:11 AnthonySuper

I'm not sure I've been convinced yet. Yes, that SQL might be convenient, but in Rel8 you can already do

where_ $ (userRank, id) >: lit (10, 100)

Does that solve your problem?

ocharles avatar Jul 07 '23 18:07 ocharles