range

fun range(from: Long, to: Long, referencedTable: String? = null)(source)

Limits the result to rows from from to to

Parameters

from

The first row to return

to

The last row to return

referencedTable

If the column is from a foreign table, specify the table name here


fun range(range: LongRange, referencedTable: String? = null)(source)

Limits the result to rows from range.first to range.last

Parameters

range

The range of rows to return

referencedTable

If the column is from a foreign table, specify the table name here