Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Converti il ​​valore numerico in Varchar

penso che dovrebbe essere

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

o

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