sql 查询分析中,如何将数值形转成字符形 问题点数:20、回复次数:2Top
declare @aa decimal(18,2) set @aa=18 select convert(varchar(10),@aa) Top
谢谢xxcw(puma),给分!!!Top