gpt4 book ai didi

php - Symfony2 学说 : How to select users that are not in groups with doctrine query builder

转载 作者:行者123 更新时间:2023-11-30 23:46:56 25 4
gpt4 key购买 nike

我安装了 symfony2 和 fos 用户包,我正在尝试在 Symfony2 doctrine query builder 中重现这个 MySql 查询。

此查询应选择不属于所列组的用户。

SELECT *  FROM 
fos_user_user
left join
fos_user_user_group on fos_user_user.id = fos_user_user_group.user_id
and fos_user_user_group.group_id in (1,2,3,4,5,6,7,8)
where
fos_user_user_group.user_id is null

Doctrine 手册给出了检查属于单个组的用户的示例,但是当 groupId 是多个组 ID 的数组 时没有引用。 :groupId 不是整数,doctrine 报错。

$query = $em->createQuery('SELECT u.id FROM CmsUser u WHERE :groupId MEMBER OF u.groups');
$query->setParameter('groupId', $group);
$ids = $query->getResult();

取自14. Doctrine Query Language

Mysql 方案是默认的 FOS 用户包。以简化的方式,它看起来像这样:

CREATE TABLE IF NOT EXISTS `fos_user_user` (
`id` int(11) NOT NULL,
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE IF NOT EXISTS `fos_user_group` (
`id` int(11) NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`roles` longtext COLLATE utf8_unicode_ci NOT NULL COMMENT '(DC2Type:array)',
`deletedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE IF NOT EXISTS `fos_user_user_group` (
`user_id` int(11) NOT NULL,
`group_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

最佳答案

您可以在查询中添加一个count,然后添加一个where count = 0having count = 0。这应该返回没有组的用户。

像这样:

$query = $em->createQuery('SELECT u.id, COUNT(u.groups) as groupCount FROM CmsUser u WHERE groupCount = 0');
$ids = $query->getResult();

关于php - Symfony2 学说 : How to select users that are not in groups with doctrine query builder,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32589249/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com