doutao1282 2015-03-11 00:44
浏览 66
已采纳

Symfony2.3 Doctrine Query Builder复杂查询

I am looking for the equivalent of this SQL SELECT statement in Doctrine Query Builder:

SELECT p.*
FROM position p, fonction f
WHERE ( (p.id = f.position_id) AND (p.type ='MONO_MEMBRE') AND (f.date_fin IS NOT NULL) )
OR ( p.type='MULTI_MEMBRE' )

I tried this way :

function(PositionRepository $er) {
    return $er->createQueryBuilder('p')
        ->leftJoin('p.fonctions', 'f', 'WITH', '(f.dateFin IS NOT NULL) AND (p.type= :type_mono)')
        ->orWhere('p.type = :type_multi')
        ->setParameters(array(
            'type_multi' => 'MULTI_MEMBRE',
            'type_mono'  => 'MONO_MEMBRE'
            ));
}

It doesn't return the expected results. Can anyone help me please? Thank you for your time in advance.

  • 写回答

2条回答 默认 最新

  • dpo15099 2015-03-11 07:52
    关注

    I followed the doctrine documentation on the QueryBuilder and I found the solution. Here it is :

    function(PositionRepository $er) {
        $qb= $er->createQueryBuilder('p')
                ->leftJoin('p.fonctions', 'f');
    
        $andModule = $qb->expr()->andX();
        $andModule->add($qb->expr()->isNotNull('f.dateFin'));
        $andModule->add($qb->expr()->eq('p.type', ':mono'));    
    
        return $qb->where('f IS NULL')
                  ->orWhere('p.type = :multi')
                  ->orWhere($andModule)
                  ->setParameters(array(
                    'mono' => 'MONO_MEMBRE',
                    'multi' => 'MULTI_MEMBRE'
                    ));
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 python 3.8.0版本,安装官方库ibm_db遇到问题,提示找不到ibm_db模块。如何解决?
  • ¥15 TMUXHS4412如何防止静电,
  • ¥30 Metashape软件中如何将建模后的图像中的植被与庄稼点云删除
  • ¥20 机械振动学课后习题求解答
  • ¥15 IEC61850 客户端和服务端的通讯机制
  • ¥15 MAX98357a(关键词-播放音频)
  • ¥15 Linux误删文件,请求帮助
  • ¥15 IBMP550小型机使用串口登录操作系统
  • ¥15 关于#python#的问题:现已知七自由度机器人的DH参数,利用DH参数求解机器人的逆运动学解目前使用的PSO算法
  • ¥15 发那科机器人与设备通讯配置