标签:style blog color ar sp div on 问题 log
1、类型转换
用convert,cast
float转换出现科学计数字母的问题:可以先转成numeric再转成varchar
declare @fl float set @fl=1234567.1234567 select @fl,CONVERT(varchar,@fl),convert(varchar,CONVERT(numeric(14,7),@fl)) 输出 1234567.1234567 1.23457e+006 1234567.1234567
标签:style blog color ar sp div on 问题 log
原文地址:http://www.cnblogs.com/shengyu-kmust/p/4031587.html