Back to Prql

Take

web/book/src/reference/stdlib/transforms/take.md

0.13.12268 B
Original Source

Take

Picks rows based on their position.

prql
take (n|range)

See Ranges for more details on how ranges work.

Examples

prql
from employees
take 10
prql
from orders
sort {-value, created_at}
take 101..110