Assume I have the following query:
Update LPMBonusReport Set BoxID = (Select ContainerSerialNumber
From Wip.vwWorkItem Where SerialNumber = LPMBonusReport.SubID)
The object Wip.vwWorkItem
is a view.
Assume there are 100 rows in the LPMBonusReport table. Would the view get materialized 100 times, once for each row in LPMBonusReport, or would it get materialized just once?
Thanks.