读书人

这个SQL语句如何写?关于百分比的

发布时间: 2012-04-27 11:57:44 作者: rapoo

这个SQL语句怎么写?关于百分比的


ApplyAdult和ApplyEnfant占ApplyNumber(这个是总数)多少百分比

[解决办法]

SQL code
select a.sceneId,    ltrim(cast(sum(b.ApplyAdult)*100./nullif(sum(AppluNumber),0) as decimal(12,2)))+'%' Adultfrom SceneInfo a join ApplyInfo b on a.sceneId = b.sceneIdgroup by a.sceneId-- ??? 

读书人网 >SQL Server

热点推荐