60

我会因为这个我没有得到修复的最小错误而发疯。我想在两天之间选择条目,下面的例子说明了我所有的失败:

选择 1。

$qb->where('e.fecha > ' . $monday->format('Y-m-d'));
$qb->andWhere('e.fecha < ' . $sunday->format('Y-m-d'));

结果(0 个条目):

SELECT r0_.id_reservacion AS id_reservacion0, r0_.fecha AS fecha1, r0_.cliente AS cliente2 
FROM reservacion r0_ 
WHERE (r0_.fecha > 2012 - 07 - 16) AND (r0_.fecha < 2012 - 07 - 22)

选择 2

$qb->add('where', 'e.fecha between 2012-01-01 and 2012-10-10');

结果(0 个条目):

SELECT r0_.id_reservacion AS id_reservacion0, r0_.fecha AS fecha1, r0_.cliente AS cliente2 
FROM reservacion r0_ WHERE r0_.fecha 
BETWEEN 2012 - 01 - 01 AND 2012 - 10 - 10

这是我的当前条目表:

id      fecha            cliente
1   2012-07-16 00:00:00    2    
2   2012-07-16 13:00:00    4    
3   2012-07-22 23:00:00    4

编辑 1

为了评估 sql 以避免疑虑,我运行了这个查询:

$qb->where('e.fecha > ' . $sunday->format('Y-m-d'));

结果(3 个条目):

SELECT r0_.id_reservacion AS id_reservacion0, r0_.fecha AS fecha1, r0_.cliente AS cliente2 

所以,看起来sql不是问题。FROM reservacion r0_ WHERE r0_.fecha > 2012 - 07

4

4 回答 4

161

你可以这样做……</p>

$qb->where('e.fecha BETWEEN :monday AND :sunday')
   ->setParameter('monday', $monday->format('Y-m-d'))
   ->setParameter('sunday', $sunday->format('Y-m-d'));

或者……</p>

$qb->where('e.fecha > :monday')
   ->andWhere('e.fecha < :sunday')
   ->setParameter('monday', $monday->format('Y-m-d'))
   ->setParameter('sunday', $sunday->format('Y-m-d'));
于 2012-09-14T20:27:47.227 回答
44

我相信正确的做法是使用查询构建器表达式:

$now = new DateTimeImmutable();
$thirtyDaysAgo = $now->sub(new \DateInterval("P30D"));
$qb->select('e')
   ->from('Entity','e')
   ->add('where', $qb->expr()->between(
            'e.datefield',
            ':from',
            ':to'
        )
    )
   ->setParameters(array('from' => $thirtyDaysAgo, 'to' => $now));

http://docs.doctrine-project.org/en/latest/reference/query-builder.html#the-expr-class

编辑:与此处的任何其他答案相比,此方法的优势在于它独立于数据库软件 - 您应该让 Doctrine 处理日期类型,因为它具有处理此类事情的抽象层。

例如,如果您执行诸如以“Ymd”形式添加字符串变量之类的操作,它将在转到 MySQL 以外的数据库平台时中断。

于 2013-07-27T21:43:59.567 回答
3

    编辑:查看其他答案以获得更好的解决方案

我提供的原始新手方法是(opt1):

$qb->where("e.fecha > '" . $monday->format('Y-m-d') . "'");
$qb->andWhere("e.fecha < '" . $sunday->format('Y-m-d') . "'");

和(选择2):

$qb->add('where', "e.fecha between '2012-01-01' and '2012-10-10'");

这既快速又简单,并立即使原始海报生效。

因此接受了答案。

根据评论,这是错误的答案,但很容易犯错误,所以我把它留在这里作为“不该做什么!”

于 2012-07-19T02:51:35.397 回答
1

看看我如何在参数中格式化我的日期 $jour。这取决于您使用 expr()->like 还是 expr()->lte

$qb
        ->select('e')
        ->from('LdbPlanningBundle:EventEntity', 'e')
        ->where(
            $qb->expr()->andX(
                $qb->expr()->orX(
                    $qb->expr()->like('e.start', ':jour1'),
                    $qb->expr()->like('e.end', ':jour1'),
                    $qb->expr()->andX(
                        $qb->expr()->lte('e.start', ':jour2'),
                        $qb->expr()->gte('e.end', ':jour2')
                    )
                ),
                $qb->expr()->eq('e.user', ':user')
            )
        )
        ->andWhere('e.user = :user ')
        ->setParameter('user', $user)
        ->setParameter('jour1', '%'.$jour->format('Y-m-d').'%')
        ->setParameter('jour2', $jour->format('Y-m-d'))
        ->getQuery()
        ->getArrayResult()
    ;
于 2017-08-16T22:25:02.067 回答