|
Question : How do I display the variable in Message Window of Query Analyzer?
|
|
How do I display the in T-SQL. For example, here is the line:
SET @SizingLoanAmount = [JEMS].[dbo].[GetSizingInputsRolledUpLoanAmount]( @LoanID , @TermTypeID )
How do I display @SizingLoanAmount in the Message window. (I am using Query Analyzer)
|
|
Answer : How do I display the variable in Message Window of Query Analyzer?
|
|
print @SizingLoanAmount
|
|
|
|