gpt4 book ai didi

mysql - 从表中选择数据时出现问题?

转载 作者:行者123 更新时间:2023-11-29 00:06:08 24 4
gpt4 key购买 nike

我有一张如下所示的表格。

View        :    Cat    :    Name
abcView
abcView abcCategory2
abcView abcCategory2 abcFilter
abcView2
abcView2 abcCategory
abcView2
abcView3

View 是 Cat 的父级,Cat 是 Name 的父级。如果 Cat 存在, View 永远不会为空。同样,如果 Name 存在,Cat 永远不会为空。我想以不希望结果中有任何空白或重复的方式获取数据。如果有两个条目,一个有 child ,一个没有 child ,那么我只想显示有 child 的条目。但如果没有 child ,那么我只想返回 parent 的名字。

View      :   Cat      :    Name
abcView abcCateogry2 abcFilter
abcView2 abcCategory
abcView3

最佳答案

试试这个:

SELECT a.View, MAX(a.Cat) Cat, MAX(a.Name) AS `name` 
FROM tableA a
GROUP BY a.View

关于mysql - 从表中选择数据时出现问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27375830/

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