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

c# - How do I debug "System.DllNotFoundException: The specified procedure could not be found"? -

javascript - Can Piwik report referrer in real time? -

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