I wan to convert data in table SQL from int to string or text. I have code to convert it but it does not work.
The data still be int not convert to sting/text
My code
DECLARE @U0 int
SET @U0=1905152
SELECT CAST(@U0 as varchar(10))
screenshot of the output
Can anyone help me?