How to concatenate in SQL Server

前端 未结 3 673
庸人自扰
庸人自扰 2021-01-28 01:34

My database doesn\'t have a specific column so I created a column in my query by switch. What I need is to concatenate this column with another column in the database:



        
3条回答
  •  余生分开走
    2021-01-28 01:44

    you must try this SQL query to contact the columns. Here I concat three columns of user table named (name_first, name_middle, name_last) and got the result into a single column named FULLNAME.

    Here is the image of result

提交回复
热议问题