Can we make a DISTINCT of a group_concat(distinct somefield)?(我们可以对 group_concat(distinct somefield) 进行 DISTINCT 吗?)
问题描述
http://sqlfiddle.com/#!2/37dd94/17
如果我执行 SELECT DISTINCT,我会得到与仅执行 SELECT 相同的结果.
If I do SELECT DISTINCT I get the same results as doing just SELECT.
在查询结果中,您将看到两个包含Evora"区的活动.只有一个应该出现.
On the query results, you will see two activities that contains the District "Evora". Only one should appear.
有什么线索吗?
推荐答案
下面的查询怎么样 (SQL FIDDLE):
How about the following query (SQL FIDDLE):
SELECT GROUP_CONCAT(APA_T.district), t.name
FROM tbl_activity AS t
JOIN tbl_activity_package AS ap ON t.id = ap.id_activity
JOIN
(
SELECT DISTINCT apa.district AS district,
(
SELECT s1.id_activity_package
FROM tbl_activity_package_address s1
WHERE apa.district = s1.district
ORDER BY s1.id DESC
LIMIT 1
) AS idActivityPackage
FROM
tbl_activity_package_address apa
ORDER BY apa.district
) AS APA_T
ON ap.id = APA_T.idActivityPackage
GROUP BY t.name
ORDER BY APA_T.district;
上面的查询会去掉多余的Faro和Evora.
The above query will eliminate the extra Faro and Evora.
这篇关于我们可以对 group_concat(distinct somefield) 进行 DISTINCT 吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:我们可以对 group_concat(distinct somefield) 进行 DISTINCT 吗?
基础教程推荐
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- 无法解决整理冲突 2021-01-01
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- 是否可以执行按位分组功能? 2021-01-01
- 在 SQL 中连接多个表 2021-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
