You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Takes the parent SQL and adds the childDim to the grouping Clause, then returns the last entry ordered by childDim as an aggregation on aggExp. The resultset will not be expanded by the grouping level. It will only show the last entry from this additional query.
Ideal for working with snapshot data, e.g. inventory.
Syntax:
SUM ( LastChild ( aggExp, childDIm ))
Example:select customerid,year(orderdate) as theyear,
month(orderdate) as theMonth,
sum(lastchild(freight, orderdate )) as [lastchild]
from orders
group by customerid,year(orderdate),month(orderdate)
order by customerid, year(orderdate),month(orderdate)

  • No labels