This is achievable using csvsql, like this:
csvsql
csvsql --query "select * from joined limit 2, 4;" joined.csv
This would print lines 2-4 from the output. Note that the table name is the same as the basename of the CSV file (in this case "joined").