JSON/q

A JSON-based data access specification

Query

{
  "where": "c.region == \"WA\"", 
  "as": [
    "c", 
    "o"
  ], 
  "from": [
    "Customers", 
    "c.orders"
  ], 
  "take": 3, 
  "select": [
    "c.customerId", 
    "o.orderId", 
    "o.orderDate"
  ]
}

Results

{}