在實現用戶的報表過程中
收款明細表<省略其它字段>
數據樣式
日期 收款金額
報表樣式
日期 收款金額
<Null>
<Null>
利用OVER函數
Drop Table Test_ReRecord;
create table Test_ReRecord
(
BillDate Date not null
Money Number(
)
/
Insert Into Test_ReRecord
Values
(
To_Date(
Insert Into Test_ReRecord
Values
(
To_Date(
Insert Into Test_ReRecord
Values
(
To_Date(
Insert Into Test_ReRecord
Values
(
To_Date(
Insert Into Test_ReRecord
Values
(
To_Date(
Commit;
SELECT
DECODE(RN
From
(
SELECT
BillDate
OVER
(
Partition By BillDate
Order By BillDate
) RN
FROM
Test_ReRecord
);
From:http://tw.wingwit.com/Article/program/Oracle/201311/17880.html