CREATE PROCEDURE [dbo].[Products_SelectTotals] AS BEGIN SET NOCOUNT ON; SELECT SUM([UnitPrice]) AS [UnitPriceTotal] FROM [dbo].[Products] END