Tôi muốn xây dựng một truy vấn.
đây là bảng:
id user_id sn_no
1 22 00112233
2 22 987654325
3 22 65489732
4 25 984123123
5 25 9568456456
6 25 65456456
Tôi muốn kết quả như thế này:
{
"user_id":22,
"sn_no": "00112233,987654325,65489732"
}
{
"user_id":25,
"sn_no": "984123123,9568456456,65456456"
}
Bất cứ ai có thể xin vui lòng giúp giải quyết vấn đề này?
Tôi đã thử : concat
, GROUP_CONCAT
nhưng không thể có kết quả.
Bạn có thể vui lòng giúp tôi thêm điều này trong Tham gia tham gia không?
$users = \DB::table('users')
->join('users_mcu', 'users.id', '=', 'users_mcu.user_id')
->join('country_user', 'users.id', '=', 'country_user.user_id')
->join('country_phase_color', 'country_user.country_id', '=', 'country_phase_color.id')
->select('users.id', 'users.first_name', 'users.last_name', 'users.company', 'users.designation', 'users.lang', 'users.phone', 'users.disp_graph', 'users.user_image', 'users.email', 'users.role', 'users.created_at', 'users.updated_at', 'country_user.country_id', 'country_phase_color.country_name')
->get();
mặc định
—
Dilip Hirapara
SEPARATOR
là ','
không cần xác định lại
Vui lòng chia sẻ nơi bạn đã thử
—
GROUP_CONCAT
sn_no
bạn đã sử dụng concat nhóm như thế này