I need to print a message from isql.
print 'Text is ' + @name
I need to print my string and the value of the variable @name in the same line.
print 'Text is'
print @name
If i do like this a new line appears, Can i combine the above two prints to get the ouput in a single line.
thanks
print 'Text is ' + @name
I need to print my string and the value of the variable @name in the same line.
print 'Text is'
print @name
If i do like this a new line appears, Can i combine the above two prints to get the ouput in a single line.
thanks