Oracle 11g で PL/SQL を使用する クエリを記述して目的の結果を返すにはどうすればよいですか? Licenses テーブルの expiry_date を使用して詳細をまとめたいと思います。各グループ内のすべてのトランザクションは expiry_date より前に発生する必要があります。
Licenses
license_type vendor_code funding_code license_expiry_date
---------------------------------------------------------------------------
CAB 1001 XR1 07/09/2011 4:23:18 pm
CAB 1002 XR2 07/06/2012 10:22:16 am
License_detail
register_period license_type active_date fee
---------------------------------------------------------------------
2012A CAB 06/01/2011 25.00
2012A CAB 07/01/2011 25.00
2012A CAB 08/01/2011 30.00
2012A CAB 09/01/2011 30.00
2012A CAB 07/10/2012 40.00
2012A CAB 07/11/2012 40.00
Desired Result
Period Type Funding Vendor TotalFees Expiry_Date
---------------------------------------------------------
2012A CAB XR1 1001 50.00 07/09/2011 4:23:18 pm
2012A CAB XR2 1002 60.00 07/06/2012 10:22:16 am
2012A CAB <null> <null> 80.00 <null>