这是我的sql数据库:
我想根据t0_id(4)和from_id对消息进行分组。 根据to_id of 4
,消息应该是不同from_id的组That is get a php output of:
1. get: TRUELOVE, hadi when(from_id is 1)
2. get: cutie (from_id 2)
3. get: true love(from_id 3)
注意:FROM_ID不是常数值但是to_id IS常量(4)
我如何编写sql语句
答案 0 :(得分:1)
您可以将group_concat用于mysql
select group_concat(messg)
from my_table
where to_id = 4
group by from_id;