Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我在 mysql 中有一个表模式,如下所示:-
ipsrc,ipdst,framelen
现在,如果我执行以下操作:-
select max(framelen) from tblname group by ipsrc,ipdst
对于每个唯一的 ipsrc:ipdst 对,我得到最大的 framelen。
如果我想要framelen每ipsrc:ipdst对中的所有东西怎么办?
framelen
ipsrc:ipdst
我们如何用 sql 得到它?
使用GROUP_CONCAT()
select group_concat(framelen) from tblname group by ipsrc, ipdst
列出所有framelen逗号分隔。
尝试这个:
select framelen from tblname group by ipsrc,ipdst,framelen