I am trying to print a selected value, is this possible?
Example:
PRINT SELECT SUM(Amount) FROM Expense
Declare @SumVal int; Select @SumVal=Sum(Amount) From Expense; Print @SumVal; You can, of course, print any number of fields from the table in this way. Of course, if you want to print all of the results from a query that returns multiple rows, you'd just direct your output appropriately (e.g. to Text).
To print query results on your default printer: Select Reporting Tools > Query > Query Manager. Click the Search button, and then click either the HTML or Excel links. Click the Print button or select File, Print.
In Sql Server PRINT statement can be used to return message to the client. It takes string expression as input and returns string as a message to the application.
You know, there might be an easier way but the first thing that pops to mind is:
Declare @SumVal int; Select @SumVal=Sum(Amount) From Expense; Print @SumVal;
You can, of course, print any number of fields from the table in this way. Of course, if you want to print all of the results from a query that returns multiple rows, you'd just direct your output appropriately (e.g. to Text).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With