日期:2014-05-18  浏览次数:20488 次

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


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

------解决方案--------------------
SQL code

select a.sceneId,
    ltrim(cast(sum(b.ApplyAdult)*100./nullif(sum(AppluNumber),0) as decimal(12,2)))+'%' Adult
from SceneInfo a join ApplyInfo b on a.sceneId = b.sceneId
group by a.sceneId

-- ???