sql server - How can I append a column in SQL? -


i've tried different things in sql server 2012 append columns. concat merges columns this: catdogparrot whereas want in list like:

 cat  dog  parrot 

i've tried + in sql, giving me same result. saw '||' well, reason says wrong syntax @ second pipe. there way append column new one? or have create new column multiple columns? these columns in same table. suggestions advice appreciated, thanks!

i'm not sure trying do, try use

concat(' - ', `column1`, ' - ', `column2`, ' - ', ... `column999`) 

Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -