offset method

SqlBuilder offset(
  1. int value
)

Set OFFSET

Implementation

SqlBuilder offset(int value) {
  _offset = value;
  return this;
}