在表格A
中,我的日期从2014-01-01
到2014-12-31
action_date
2014-01-01
2014-01-02
2014-01-03
...
2014-12-31
在表格B
中,我有一些信息,如
id name action_date deletion_date
1 nik 2013-01-01 2014-02-03
2 tom 2014-06-02 2014-06-30
3 lola 2013-12-30 2014-01-01
如果A
activation_date<=action_date<=deletion_date
表格行
e.g。
action_date id name action_date deletion_date
2014-01-01 1 nik 2013-01-01 2014-02-03
2014-01-01 3 lola 2013-12-30 2014-01-01
2014-01-02 1 nik 2013-01-01 2014-02-03
2014-01-03 1 nik 2013-01-01 2014-02-03
[...]
2014-02-03 1 nik 2013-01-01 2014-02-03
2014-06-02 2 tom 2014-06-02 2014-06-30
2014-06-03 2 tom 2014-06-02 2014-06-30
[...]
2014-06-03 2 tom 2014-06-02 2014-06-30
我试图在没有on语句的情况下使用left join,只在where where条件下使用。不幸的是,它没有用。
答案 0 :(得分:2)
您可以在between
条件中使用join
运算符:
SELECT a.action_date, b.*
FROM b
JOIN a ON a.action_date BETWEEN b.activation_date AND b.deletion_date