Scott Gray wrote:
> Hi Adam,
>
> What exactly does this do?
In a nutshell, and just to get you guys all excited and wet, here's
the string I've been testing this with:
==
select
a.*,
b.firstName,
b.lastName
FROM
Party a JOIN Person b ON a.partyId = b.partyId
WHERE
a.partyId='foo'
OFFSET 5
LIMIT 10
;
==
ps: My previous versions of this were based on an oracle grammar, that
had no real license applied. This new version I wrote completely from
scratch today, based on my knowledge of javacc/jjtree, and postgres
sql syntax.