offset method

SelectQuery offset(
  1. int count
)

Add OFFSET

Implementation

SelectQuery offset(int count) {
  _offset = count;
  return this;
}