Why Sqlite doesn't support just the use of offset in select statements? As such SQL does support the use of offset only, without limit. But in case of Sqlite it's not possible to use offset without limit.
Also what is mentioned on website is different from what is there in parser.c file. On website Limit and offset is followed by integer whereas in parser.c it's followed by an expression. How does the "Limit 10, 30" works? Is this same as "limit 10, offset 30"? Regards, Phani

