vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame^] | 1 | declare function samecust($cust, $ord) |
2 | {$cust.cid = $ord.cid} | ||||
3 | |||||
4 | for $c in dataset('Customers') | ||||
5 | for $o in dataset('Orders') | ||||
6 | where samecust($c, $o) | ||||
7 | and $c.age < 21 and $o.total > 1000.00 | ||||
8 | return { "custname":$c.name, "orddate":$o.date } |