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 8883711
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T20:52:55+00:00 2026-06-14T20:52:55+00:00

Given we have a database with the tables: artist (columns: name, id) and song

  • 0

Given we have a database with the tables:
“artist” (columns: name, id) and
“song” (title, composers_id, songwriters_id).

I want to print the songs with the composers name and songwriters name.
I have succeeded in printing the composers name only with:

SELECT title, name AS Composers_Name 
  FROM artist, song 
    WHERE song.composers_id = artist.id;

I am failing to fetch the songwriters name..
What I tried was this:

SELECT title, name AS Composers_Name, name AS Songwriters_name
  FROM artist, song 
    WHERE song.composers_id = artist.id AND song.songwriters_id = artist.id;

But this returns all the songs that the composers and songwriter is the same person.
I am thinking of using JOIN but I’m not sure how..

  • 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-14T20:52:57+00:00Added an answer on June 14, 2026 at 8:52 pm

    You have to select from the table artist 2 times.

    select s.title, a1.name AS Composer, a2.name as songwriter
    from song s, artist a1, artist a2 
    where s.composers_id = a1.id and s.songwriters_id = a2.id;
    

    assuming that Composers and Songwriters are both stored in the table artist.

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

Sidebar

Related Questions

I have 3 tables in SQLite database: Songs: _id | name | length |
Given a database with two tables X and Y , I have a query
I have 10 tables in my database(MySQL). two of them is given below tbl_state
Given a mysql-database with tables as follows: author: +----+----------+ | id | name |
I have a database, which has a table with fields like title, album, artist...
I have two database tables Contact (Id, Name, ...) and ContactOperationalPlaces (ContactId, MunicipalityId), where
have a database with a list of business leads. They are all given a
I have a database with a bunch of dates. I would like to, given
I have been given the task to design a database to store a lot
I Have to get a movie from a PostgreSQL database that matches a given

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.