0

假设我在 mysql 中有一个表模式,如下所示:-

ipsrc,ipdst,framelen

现在,如果我执行以下操作:-

select max(framelen) from tblname group by ipsrc,ipdst

对于每个唯一的 ipsrc:ipdst 对,我得到最大的 framelen。

如果我想要framelenipsrc:ipdst对中的所有东西怎么办?

我们如何用 sql 得到它?

4

2 回答 2

1

使用GROUP_CONCAT()

select group_concat(framelen) 
from tblname 
group by ipsrc, ipdst

列出所有framelen逗号分隔。

于 2013-04-19T09:23:54.750 回答
0

尝试这个:

select framelen from tblname group by ipsrc,ipdst,framelen
于 2013-04-19T09:25:15.113 回答