Cascade 2 strings in stored procedure for MS SQL

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • yingwen
    New Member
    • Apr 2007
    • 17

    Cascade 2 strings in stored procedure for MS SQL

    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
  • mabubakarpk
    New Member
    • Feb 2007
    • 62

    #2
    As I understand ur question u can show such

    Print @string1 + @string2

    Comment

    Working...