Thanks for the quick reply. But the blog_ids field is empty or returns only one blog id. Here is the test im working with.
Table user
id------first------last-------email
1------Jerrod----Davenport--123
2------Nick------Musick------456
Table blog
id--------user_id--------content
1--------1--------------Blog 1
2--------1--------------Blog 2
The SQL
SELECT
u.first,
u.last,
u.email,
CONCAT_WS(',', b.id) AS blog_ids
FROM user u
LEFT JOIN blog b ON u.id = b.user_id
WHERE u.id = 1
GROUP BY b.id
LIMIT 1
Results
First, Last, Email, Blog ID
Jerrod, Davenport, 123, 1
Am I missing anything?