-
-
Notifications
You must be signed in to change notification settings - Fork 342
Open
Labels
Description
Hello mate
Is there a possibilty of OVER cluse support in Lib may be it already exist and I overlooked.
I was trying to achive my pagination logic and needed to use OVER cluase with limit.
my sql logic may be off in this regard but I was trying to achive something like this
select id,firstName,lastName,count(id) OVER() from user_profile order by id limit 50;
it just saves me trouble of writing seperate query for just a count when i add multiple conditions
I am pretty sure this could be achived by left join or somthin similar or I could be shootin blind here
cheers.