...a set of ROWS or
single aggregate?
Context
For context, here is the example from the book.
SELECT S.Supplierid, s.companyname AS Supplier, A.*
FROM Production.Suppliers AS S
CROSS APPLY (SELECT productid, productname, unitprice
FROM Production.Products AS...