0
在我的表service_types
我有3個字段id
,type
,title
。我想在相同的type
下獲得所有titles
。我應該如何繼續?mysql group根據類型查詢
在我的表service_types
我有3個字段id
,type
,title
。我想在相同的type
下獲得所有titles
。我應該如何繼續?mysql group根據類型查詢
select group_concat(title) as titles
from service_types
group by `type`