一条SQL中,一次性查询出多个字段的COUNT值:

 select
count(case when (TOFlag='' or TOFlag='') then 1 else null end) WaitingPayCount,
count(case when (TOFlag='' OR TOFlag='') then 1 else null end) WaitingTravelCount,
count(case when (TOFlag='' and TOIsComment='') then 1 else null end) WaitingComment
from [Order] with(nolock)

至于SQL Case when 的使用方法,我在网上看到一个比较详细的帖子,就不添足了:Case when 的使用方法

05-11 10:50