sql >> Base de Datos >  >> RDS >> Sqlserver

Convertir valor numérico a Varchar

Creo que debería ser

select convert(varchar(10),StandardCost) +'S' from DimProduct where ProductKey = 212

o

select cast(StandardCost as varchar(10)) + 'S' from DimProduct where ProductKey = 212