Modify the previous query call in Example 6 to find sessions where the user checked out at least three products by changing the Pattern argument to:
PATTERN('H+.D*.C{3,}.D')
SQL-MapReduce Call
SELECT * FROM NPATH ( ON aggregate_clicks PARTITION BY sessionid ORDER BY clicktime USING MODE (nonoverlapping) PATTERN('H+.D*.C{3,}.D') SYMBOLS(pagetype = 'home' AS H, pagetype='checkout' AS C, pagetype<>'home' AND pagetype<>'checkout' AS D) RESULT (FIRST(sessionid OF C) AS sessionid, max_choose(productprice, productname OF C) AS most_expensive_product, MAX (productprice OF C) AS max_price, min_choose (productprice, productname OF C) AS least_expensive_product, MIN (productprice OF C) AS min_price) ) as dt ORDER BY dt.sessionid;
Output
sessionid | most_expensive_product | max_price | least_expensive_product | min_price |
---|---|---|---|---|
5 | cellphones | 600 | bookcases | 150 |