Showing posts with label SQL Server PRINT Keyword. Show all posts
Showing posts with label SQL Server PRINT Keyword. Show all posts

Thursday, 30 July 2015

SQL Server PRINT Keyword

SQL Server PRINT Keyword

To display something in plain text as a result of a statement, type PRINT followed by what to display. Therefore, PRINT uses the following formula:

PRINT 'WhatToPrint'

The item to display can also be an operation or the result of an operation. If you want to display a character, a word, or a sentence, include it between single-quotes. If you want to include a single-quote in your statement, double it;