mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
24 lines
749 B
XML
24 lines
749 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
<ebean xmlns="http://ebean-orm.github.io/xml/ns/ebean">
|
|
|
|
<entity class="org.tests.model.basic.OrderAggregate">
|
|
<raw-sql name="default">
|
|
<column-mapping column="order_id" property="order.id"/>
|
|
<query>
|
|
select order_id, count(*) as totalItems, sum(order_qty*unit_price) as totalAmount
|
|
from o_order_detail
|
|
group by order_id
|
|
</query>
|
|
</raw-sql>
|
|
<raw-sql name="default">
|
|
<column-mapping column="order_id" property="order.id"/>
|
|
<query>
|
|
select order_id, count(*) as totalItems, sum(order_qty*unit_price) as totalAmount
|
|
from o_order_detail
|
|
group by order_id
|
|
</query>
|
|
</raw-sql>
|
|
</entity>
|
|
|
|
</ebean>
|