douchun1859 2011-03-14 02:43
浏览 35
已采纳

需要帮助从PHP中的SQL连接多个表

Let's say I have 3 tables:

Table 1 called "states":

id | state
1    italy
2    netherlands
3    russia

Table 2 called "hotels":

id | hotel name | belongsToCountry
1    Green Hotel  2
2    Luxurious    2
3    Get Warm!    3

Table 3 called "free rooms":

id | roomID | belongsToHotel
1    815      2
2    912      2
3    145      1
4    512      1
5    1200     3

Now, what I need to echo is this:

Netherlands has 4 free rooms.
Russia has 1 free room.

In words: I need to make a list of all states which have at least 1 free room and I need to return the exact value of how many free rooms there are.

If anyone can help me with this, I'd be so grateful!

  • 写回答

3条回答 默认 最新

  • dsmvqp3124 2011-03-14 03:07
    关注

    Let's build the query step by step.

    First, let's assemble the list of hotels and their free room count.

    SELECT hotels.id, COUNT(*)
      FROM hotels
           INNER JOIN free_rooms ON(hotels.id = free_rooms.belongsToHotel)
     GROUP BY hotels.id
    

    INNER JOINs force rows from the table on the "left" side of the join (hotels) only to be included in the result set when there is a corresponding table on the "right" (free_rooms). I'm assuming here that there will only be a row in free_rooms when the room is free.

    Having this, we can now join against the list-o-nations.

    SELECT hotels.id, COUNT(*), states.state
      FROM hotels
           INNER JOIN free_rooms ON(hotels.id = free_rooms.belongsToHotel)
           INNER JOIN states ON(hotels.belongsToCountry = states.id)
     GROUP BY hotels.id
    

    It should be noted, by the way, that you've made poor choices in naming these columns. states should be composed of id and state_name, hotels should be id, hotel_name, state_id, and free_rooms should be id, room_name and hotel_id. (I could also argue that states.id should be states.state_id, hotels.id should be hotels.hotel_id and free_rooms.id should be free_rooms.room_id because that makes the joins much easier...)

    If you need to represent a "belongs to" relationship, you're actually looking for foreign key restraints. You should use those instead of special naming.

    *ahem* Where was I? Oh yes. The second query will result in a result set with three columns - the hotel id, the number of rooms in it, and the country it's in. But, you just need the number of rooms per country, so let's do one last change.

    SELECT COUNT(*), states.state
      FROM hotels
           INNER JOIN free_rooms ON(hotels.id = free_rooms.belongsToHotel)
           INNER JOIN states ON(hotels.belongsToCountry = states.id)
     GROUP BY states.state
    

    Only two changes. First, we're now grouping together by state. Second, we're no longer including the hotel id in the result set. This should get you the data you need, again assuming that there will never be a row in free_rooms when the room is not free.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么