对于以下表结构
订票
字段-BookingID(主键),CustID,SeatPref

我想获取大多数CustID首选的SeatPref。

请帮忙。

最佳答案

select
    seatpref,
    count(seatpref) as PrefCount
from
    Bookings b
group by
    seatpref
order by
    count(seatpref) desc

关于sql - 为表结构构建SQL查询,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5030201/

10-12 05:35