我有两张桌子,第一张
Table1
ID Name Value start end fk_table
1 edd 3 2013-03-25 2013-05-25 1
2 tom 3 2013-03-25 2013-05-25 1
3 emi 3 2013-11-25 2013-25-25 1
第二张桌子
Table2
ID VALUE
1 3
我只想在 start <= Date AND t.end >= Date 时从table1和table2添加值但是如果日期超出范围,我只想从table1获取值
假设我们今天的日期为 2013-04-16,预期结果是
edd 6
tom 6
emi 3
我使用学说和 Symfony2