This is how to convert an integer to string in SQL SERVER. Let’s suppose we want to present the year as a string
SELECT CAST(dbo.Employees.HireYear AS nvarchar(4))
K-Smart, IT Business Solutions
Find ideas to implement your IT enviroment
This is how to convert an integer to string in SQL SERVER. Let’s suppose we want to present the year as a string
SELECT CAST(dbo.Employees.HireYear AS nvarchar(4))