ddfql is a query language created in 2016.
#2579on PLDB | 8Years Old |
{
"select": {
"key": ["geo", "year"],
"value": [
"population", "life_expectancy", "gdp_per_cap", "gov_type"
]
},
"from": "datapoints",
"where": {
"$or": [
{ // implicit $and
"geo": "$geo",
"year": { "$eq": 2015 },
},
{ "population": { "$gt": 100000 } },
{ "gdp_per_cap": { "$gt": 1000 } },
{ "$and": [ // explicit $and
{ "$and": [ { "geo": โ$geoโ } ], // redundant and
{ "gdp_per_cap": { "$gt": 400, "$lt": 500 } },
{ "life_expectancy": { "$gt": 30, "$lt": 70 } }
]}
]
},
"order_by": ["life_expectancy", "population"],
"join": {
"$geo": {
key: "geo",
where: {
"is--country": true,
"latitude": { "$lte": 0 },
}
}
},
"language": "en"
}
Feature | Supported | Example | Token |
---|---|---|---|
Comments | โ | // A comment | |
Line Comments | โ | // A comment | // |
Semantic Indentation | X |