使用以前php
select A_ID ,B_ID from CustomerInfo
使用以後ide
select A_ID,GROUP_CONCAT(B_ID) from CustomerInfo order by A_ID
注意:GROUP_CONCAT()必定要配合group by使用3d