首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

请问一上关于SQL变量的小数有关问题

2012-12-23 
请教一下关于SQL变量的小数问题declare @IRatio decimal(4,4)select @IRatio10/30select @IRatio如上,我

请教一下关于SQL变量的小数问题
declare @IRatio decimal(4,4)

select @IRatio=10/30

select @IRatio

如上,我要让 @IRatio 显示为 0.3333 请问要如何处理?
[最优解释]
declare @IRatio decimal(4,4)

select @IRatio=10.0/30

select @IRatio


[其他解释]
declare @IRatio decimal(4,4)
 
select @IRatio=10*1./30
 
select @IRatio
[其他解释]
declare @IRatio decimal(4,4)

select @IRatio=10.0/30

select @IRatio

加了小数点之后,隐式转换数据类型

热点排行