2

普通查询

id  sid  string
5    1    AAA
6    1    BBB
7    2    CCC
8    3    ZZZ
9    3    EEE

我想要

sid  string
1    1. AAA 2. BBB
2    1. CCC
3    1. ZZZ 2. EEE

你知道该怎么做吗?

4

2 回答 2

3

您可以使用该GROUP_CONCAT()函数将值放入一行中,并且可以使用用户定义的变量将数字分配给sid组中的每个值:

select sid,
  group_concat(concat(rn, '. ', string) ORDER BY id SEPARATOR ' ') string
from
(
  select id,
    sid,
    string,
    @row:=case when @prev=sid then @row else 0 end +1 rn,
    @prev:=sid
  from yourtable
  cross join (select @row:= 0, @prev:=null) r
  order by id
) src
group by sid

参见SQL Fiddle with Demo,结果是:

| SID |        STRING |
-----------------------
|   1 | 1. AAA 2. BBB |
|   2 |        1. CCC |
|   3 | 1. ZZZ 2. EEE |
于 2013-03-07T14:13:17.040 回答
1

看看MySQL 的 GROUP_CONCAT() 函数

但是我会在 PHP 中进行编号。

于 2013-03-07T14:04:17.550 回答