我有一张如下表
bugID | name | description | comment
----------------------------------------------------------------
1 | bug1 | first bug | <p></p>
1 | bug1 | first bug | <p>this is the first bug</p>
1 | bug1 | first bug | <p>this needs fixing</p>
2 | bug2 | second bug | <p>this is the second bug</p>
3 | bug3 | third bug | <p>bug number 3</p>
如果我从该表中选择 *,我想按如下方式取回记录
1, bug1, first bug, <p></p>, <p>this is the first bug</p>, <p>this needs fixing</p>
2, bug2, second bug, <p>this is the second bug</p>
3, bug3, third bug, <p>bug number 3</p>
有没有办法在 SQL 中做到这一点?