首页 > 代码库 > floor相关

floor相关

declare @f int =5select floor(@f*0.22)-- 直接可显示结果create table demo(id int identity(1,1),id1 int)select * from demoinsert into demo(id1)select 2 union allselect 3 union allselect 4 union allselect 5 union allselect 6--select top (FLOOR(@f*0.23)) * from dbo.demo/* 消息 1060,级别 15,状态 1,第 17 行TOP 子句中的行数必须是整数。 */ select top (CAST(FLOOR(@f*0.5) AS int)) * from dbo.demo-- 这样就可以得到我们所想要的结果

貌似是floor后面的整数在top之中不能够被识别出来。