我有这个数据
<wrapper>
<header>
<nav>
<ul>
<li>click here</li>
<li>2nd click here</li>
</ul>
</nav>
</header>
<aside>
Aside - Map content here
</aside>
<article>
some content goes here
</article>
</wrapper>
我想这样显示我的数据
id | id_att | name |
1 | Null | jane |
2 | Null | kol |
3 | 1 | der |
3 | 1 | der |
3 | 2 | sol |
如果id_att!= null,如何对数据进行分组?
答案 0 :(得分:0)
我认为您只需要在这里SELECT DISTINCT
:
SELECT DISTINCT
id,
id_att
name
FROM yourTable;
NULL
与其他任何非NULL
值的处理方式相同。