Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8897225
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T00:17:03+00:00 2026-06-15T00:17:03+00:00

Consider the following schema: create table A ( id int primary id ) create

  • 0

Consider the following schema:

create table A
(
    id int primary id
)

create table B
(
    a_id int,
    s varchar(255)
)

And then the following query:

select A.id, sum(1), ??? concat_join(B.s) ???
from A left join B on A.id = B.a_id group by A.id

There is a 1-to-many relation between A and B, so multiple rows will be grouped into one. The desired behaviour of “concat_join” would be for each B.s in the group join them together into a single string by concatenating them (perhaps with a space seperator).

Is there someway to express this is MySQL 5.5?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T00:17:05+00:00Added an answer on June 15, 2026 at 12:17 am

    use GROUP_CONCAT

    select A.id, sum(1), GROUP_CONCAT(B.s)
    from A left join B on A.id = B.a_id 
    group by A.id
    

    by default, the string is separated by a comma. if you want to change it, add SEPARATOR keyword,

    select A.id, sum(1), GROUP_CONCAT(B.s SEPARATOR ';')
    from A left join B on A.id = B.a_id 
    group by A.id
    
    • SQLFiddle Demo
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Please consider following schema CREATE table articles ( id Int UNSIGNED NOT NULL AUTO_INCREMENT,
Consider the following database schema: create table UserGroup ( id int not null auto_increment,
Consider a table with the following schema: id, location, starred There are many records
Consider the following DB schema: CREATE UNIQUE INDEX blah1 ON table1(length); CREATE INDEX blah2
Consider the following scenario. I have a table (a stupid_table ) in a schema
Consider following program: static void Main (string[] args) { int i; uint ui; i
Let's consider the following scenario: I've a master table with a detail table. The
Consider the following table with a constraint that's a bit daft but simple enough
I am trying to create an index on the following view: SELECT 'Candidate' AS
The Requirements I have a following table (pseudo DDL): CREATE TABLE MESSAGE ( MESSAGE_GUID

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.