sqlbuilder icon indicating copy to clipboard operation
sqlbuilder copied to clipboard

Support for limit and offset for querie and sequences support inserts

Open nenodias opened this issue 6 years ago • 0 comments

Example of eloquent Eloquent used the words skip and take.

To limit the number of results returned from the query, or to skip a given number of results in the query, you may use the skip and take methods:

Sequence fields would be using a method like .setValueBySequence("id", "seq_user") On postgres the return would nextval('seq_user') On oracle the return would seq_user.nextval ...

nenodias avatar Sep 25 '19 17:09 nenodias