March 2009
Intermediate to advanced
832 pages
23h 49m
English
Custom aggregations are aggregations that are not provided as built-in aggregate functions—for example, concatenating strings, calculating products, performing bitwise manipulations, calculating medians, and others. In this section, I’ll provide solutions to several custom aggregate requests. Some techniques that I’ll cover are generic, in the sense that you can use similar logic for other aggregate requests; other techniques are specific to one kind of aggregate request.
One of the generic custom aggregate techniques uses cursors. For details about cursors, including handling of custom aggregates with cursors, please ...