I am trying to print a selected value, is this possible?
Example:
PRINT SELECT SUM(Amount) FROM Expense
set @n = (select sum(Amount) from Expense) print 'n=' + @n