sql server中的怎么把数值型转换为字符串

如题所述

第1个回答  2017-08-07
select cast(数值型字段名 as varchar) from 表名
--或者
select convert(varchar(50),数值型字段名) from 表名
相似回答