Answers for "how to create a new column in sql with concatenated of the first 2 columns"

SQL
-1

concat two columns in sql server

select Convert(nvarchar(50),ID)+'-'+Convert(nvarchar(50),Year) as ID_Year from tablename
Posted by: Guest on July-23-2020

Code answers related to "how to create a new column in sql with concatenated of the first 2 columns"

Code answers related to "SQL"

Browse Popular Code Answers by Language