...
Then we can launch Carte or the Data Integration Server to execute a query against that new virtual database table:
Code Block |
---|
SELECT dealsize, sum(sales) as total_sales, count\(*) AS nr FROM gst GROUP BY dealsize HAVING count\(*) > 20 ORDER BY sum(sales) DESC |
...