Table functions
The WHERE keyword
let orders = [id: 1, isConfirmed: 0, plannedDate: Now()] &
[id: 2, isConfirmed: 1, plannedDate: Now() + 1] &
[id: 3, isConfirmed: 0, plannedDate: Now() + 2];
let futureOrders = orders where isConfirmed and plannedDate > Now();
let nextOrderToProcess = first(orders where isConfirmed);
let numberOfOrder = count(orders where isConfirmed);The ORDER BY keyword
The SUM function
The JOIN function
The MAP-AS construct
CSV data
XML data
Last updated
Was this helpful?