简体   繁体   English

左连接与来自右表mysql的空行

[英]left join with empty rows from right table mysql

I have restaurants and orders tables, in orders table I have restaurant_id , status and date fields - for each day I save one row in orders table. 我有餐厅和订单表,在订单表中有restaurant_idstatusdate字段-每天我在订单表中保存一行。 If for some day there is no order - it means the is no row for that day in orders table. 如果某天没有订单-这意味着订单表中该天没有行。

I want to show on the calendar the data for the current month for each restaurant, according to these 2 separate conditions. 我想根据这两个单独的条件,在日历上显示每个餐厅当前月份的数据。

1) in first case show only those restaurants that have at least one free 
day during this month(which means for this month at least one date is missing in orders table).

2) in second case show only those restaurants that are free for today 
(which means there is no row for today in orders table)

for both cases, if the condition is satisfied, I should fetch all the orders for the current month - this is the tricky part. 对于这两种情况,如果条件都满足,我应该获取当月的所有订单-这是棘手的部分。

The usual anti-join with left, or inner join do not give the desired result. 带有左连接或内部连接的常规反连接无法提供所需的结果。

Thanks. 谢谢。

edit 编辑

outputs should be like this 输出应该是这样的

1) http://img826.imageshack.us/img826/3114/e6zt.png 1) http://img826.imageshack.us/img826/3114/e6zt.png

2) http://img13.imageshack.us/img13/6397/44l0.png 2) http://img13.imageshack.us/img13/6397/44l0.png

This is all the listings for this month for all restaurants that are free today: 这是今天所有免费餐厅的本月所有列表:

SELECT  r.`id`, r.`name`, o.`date`, o.`status`,  o.`id` order_id
FROM    restaurants r
        INNER JOIN orders o 
            ON r.id = o.restaurant_id
        LEFT JOIN
        (   SELECT  DISTINCT o2.Restaurant_ID
            FROM    orders o2
            WHERE   o2.date = DATE(CURRENT_TIMESTAMP)
        ) o2
            ON r.id = o2.restaurant_id
WHERE   o.Date >= DATE_FORMAT(CURRENT_TIMESTAMP ,'%Y-%m-01')
AND     o.Date <= DATE_FORMAT(DATE_ADD(CURRENT_TIMESTAMP, INTERVAL 1 MONTH) ,'%Y-%m-01')
AND     o2.Restaurant_ID IS NULL;

This simply gets all the restaurants with bookings today (subquery o2), then excludes these restaurants: 这只是获取所有今天预订的餐厅(子查询o2),然后排除以下餐厅:

AND     o2.Restaurant_ID IS NULL;

This is all the listings for this month for all restaurants that have at least one free day this month: 这是本月所有至少有一天免费的所有餐厅本月的所有列表:

SELECT  r.`id`, r.`name`, o.`date`, o.`status`,  o.`id` order_id
FROM    restaurants r
        INNER JOIN orders o 
            ON r.id = o.restaurant_id
            AND o.date BETWEEN '2013-08-10' AND '2013-08-31' 
        INNER JOIN
        (   SELECT  o2.Restaurant_ID
            FROM    orders o2
            WHERE   o2.Date >= DATE_FORMAT(CURRENT_TIMESTAMP ,'%Y-%m-01')
            AND     o2.Date <= DATE_FORMAT(DATE_ADD(CURRENT_TIMESTAMP, INTERVAL 1 MONTH) ,'%Y-%m-01')
            GROUP BY o2.Restaurant_ID
            HAVING COUNT(DISTINCT o2.Date) < DAY(DATE_ADD(DATE_FORMAT(DATE_ADD(CURRENT_TIMESTAMP, INTERVAL 1 MONTH) ,'%Y-%m-01'), INTERVAL -1 DAY))
        ) o2
            ON r.id = o2.restaurant_id
WHERE   o.Date >= DATE_FORMAT(CURRENT_TIMESTAMP ,'%Y-%m-01')
AND     o.Date <= DATE_FORMAT(DATE_ADD(CURRENT_TIMESTAMP, INTERVAL 1 MONTH) ,'%Y-%m-01');

The trick is to get the number of days in this month: 诀窍是获取该月的天数:

DAY(DATE_ADD(DATE_FORMAT(DATE_ADD(CURRENT_TIMESTAMP, INTERVAL 1 MONTH) ,'%Y-%m-01'), INTERVAL -1 DAY))

Then limit the results to restaurant_id's that have less bookings than this: 然后将结果限制为预订数少于此的restaurant_id:

HAVING COUNT(DISTINCT o2.Date) < DAY(DATE_ADD(DATE_FORMAT(DATE_ADD(CURRENT_TIMESTAMP, INTERVAL 1 MONTH) ,'%Y-%m-01'), INTERVAL -1 DAY))

Example of Both on SQL Fiddle SQL Fiddle上的两者的示例

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM