Answers for "t-sql print int variable"

SQL
0

print integer and string in SQL

declare @x INT = 1 /* Declares an integer variable named "x" with the value of 1 */
    
PRINT 'There are ' + CAST(@x AS VARCHAR) + ' alias combinations did not match a record' /* Prints a string concatenated with x casted as a varchar */
Posted by: Guest on August-31-2021
0

sql query print strings and int

print 'There are ' + cast(@Number as varchar) + ' alias combinations did not match a record'
Posted by: Guest on June-08-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language