我正在尝试获取给定日期范围的数据库值。问题是,我也试图实现获取缺失值。如果我有第1天和第3天的值,并且我要求第1-5天的值,我想得到这样的东西:
1 - >值
2 - > NULL / 0
3 - >值
4 - > NULL / 0
5 - > NULL / 0
好的,我知道如何使用MySQL和左连接中的临时表来解决这个问题:
(select adddate('1970-01-01',t4.i*10000 + t3.i*1000 + t2.i*100 + t1.i*10 + t0.i) selected_date from
(select 0 i union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t0,
(select 0 i union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t1,
(select 0 i union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t2,
(select 0 i union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t3,
(select 0 i union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t4) v
不幸的是,我不确定如何将其包含在Eloquent ORM中。 目前我正在考虑这样的事情:
$weekclockings = $shift->clockings()->leftJoin(function($query)
{
$query->raw($aboveQuery);
}, "v.selected_date", ">", "timeclocked.time_in")
但这不起作用,只是给了我“Grammar.php第33行中的ErrorException:类Closure的对象无法转换为字符串”。
所以,这可能不是最好的方法。有谁知道如何实现这个目标?
答案 0 :(得分:0)
我不知道这里的clockings()
- 可能是范围,但是要在连接中使用原始SQL,您应该使用:
$weekclockings = $shift->clockings()->leftJoin(\DB::raw($aboveQuery), "v.selected_date", ">", "timeclocked.time_in");