1declare @x INT = 1 /* Declares an integer variable named "x" with the value of 1 */
2
3PRINT 'There are ' + CAST(@x AS VARCHAR) + ' alias combinations did not match a record' /* Prints a string concatenated with x casted as a varchar */
4
1print 'There are ' + convert(varchar,@Number) + ' alias combinations did not match a record'
1print 'There are ' + cast(@Number as varchar) + ' alias combinations did not match a record'