sqlbuilder
sqlbuilder copied to clipboard
Support for limit and offset for querie and sequences support inserts
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 ...