tastott / jsoql

A SQL-like language for querying JSON data
http://tastott.github.io/jsoql
3 stars 1 forks source link

OVER #27

Closed tastott closed 9 years ago

tastott commented 9 years ago

Basically copy the OVER keyword from n1ql which can be used to enumerate the children of each item. E.g.

SELECT
   author.Name,
   book.Name,
   book.ISBN
FROM
   'file://authors.json' as author
    OVER author.Books AS book