0

在 mysql 语句中计算超过 2 个计数时我遇到了一些麻烦。

我的 count(b.entry_id) as totalbooking不会工作。我做错了什么?语句设置也正确吗?​​​​

这就是我尝试的方式:

"SELECT 
    t.restaurant_id as restaurant_id, ct.title as title, 
    count(DISTINCT t.cardid) as totalmembers, 
    count(t.restaurant_id) as totaltransactions, 
    count(b.entry_id) as totalbooking
    from transactions as t   
    inner join exp_menucard_booking as b on (t.restaurant_id = b.entry_id)
    inner join exp_channel_titles as ct on (t.restaurant_id = ct.entry_id)
    inner JOIN exp_channel_data as cd on (ct.entry_id = cd.entry_id)
    where t.cardid != 88888888 and ct.status = 'open'
    group by t.restaurant_id
    order by ct.title asc";
4

1 回答 1

0

使用此模式计算总行集的子集:

sum( case when ColumnToBeTested = trueCondition then 1 else 0 end) as SubCount
于 2013-04-14T12:47:33.523 回答