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

  • SEARCH
  • Home
  • 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 8509033
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T03:19:23+00:00 2026-06-11T03:19:23+00:00

I have a query like: SELECT coc.title, inc.name FROM cocktail coc, ingredients inc WHERE

  • 0

I have a query like:

SELECT coc.title, inc.name FROM cocktail coc, ingredients inc WHERE coc.id = 1...  

This query is just an short example

And the result is:
Title: Cuba Libre, Ingredient Name: Cola
Title: Cuba Libre, Ingredient Name: Rum
Title: Cuba Libre, Ingredient Name: Limette
I get 3 times the title because this cocktail has 3 incredients.
If I use the result set like this I get 3 times the title as the headline.

But I want:
Title: Cuba Libre, Ingredient Name: Cola
Ingredient Name: Rum
Ingredient Name: Lime
I would like to have just one time the title and all ingredients in my result set.

I there any possibility to do this in one query or do I have to execute another request afterwards just for the ingredients?

  • 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-11T03:19:24+00:00Added an answer on June 11, 2026 at 3:19 am

    If you want the items in the same row, then you can use GROUP_CONCAT():

    select c.c_name, group_concat(i.i_name) ingre
    from cocktail c
    inner join ingredients i
      on c.id = i.c_id
    where c.id = 1
    group by c.c_name
    

    see SQL Fiddle with demo

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a query like this: select empno,name from emp where job = 'CLERK'
I have a query like this SELECT TOWN, NAME FROM CINEMA WHERE CITY_ID =
I have a query like this: SELECT a.title, a.spec, a.name, l.User AS CreatedBy, DateAdd
Let's say i have query like this: SELECT name, GROUP_CONCAT(number) FROM objects GROUP BY
I have a query like this: SELECT lesson.id, p1.first_name, p1.surname, start_time, instrument.name FROM lesson,
I have a query like this SELECT tbl_products.*, GROUP_CONCAT(tags.name) FROM tbl_page_collections_products, (SELECT page_collection_name as
I have a query like this: SELECT name FROM mytable WHERE id = $id
Say I have a query like this: SELECT * FROM my_table WHERE name =
I have query like this : SELECT EXTRACT(MONTH FROM d.mydate) AS synmonth, SUM(apcp) AS
I have a query like this: SELECT COUNT(*) AS amount FROM daily_individual_tracking WHERE sales

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.