What is the code to cascade two strings
SET @string1 = 'aa'
SET @string2 = 'bb'
How can I get a string 'aabb' in stored procedure in SQL SERVER 2000?
thanks
SET @string1 = 'aa'
SET @string2 = 'bb'
How can I get a string 'aabb' in stored procedure in SQL SERVER 2000?
thanks
Comment