tastott / jsoql

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

Allow sub-query in FROM clause #81

Closed tastott closed 9 years ago

tastott commented 9 years ago

So we can do something like

SELECT Thing
FROM
(
    SELECT Thing FROM 'file://a.json'
    UNION
    SELECT Thing FROM 'file://b.json'
)