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