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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T04:23:03+00:00 2026-05-21T04:23:03+00:00

I have a table with columns artist, title, album and other columns for dates,

  • 0

I have a table with columns artist, title, album and other columns for dates, ip etc
now i want to display unique artist title and album in a row
like say,

artist , album, title
a , b , c
a , b , c
d , e , f
a , b , d

then it must display

a,b,c
d,e,f
a,b,d

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-05-21T04:23:04+00:00Added an answer on May 21, 2026 at 4:23 am

    You can use the DISTINCT keyword.

    SELECT DISTINCT artist, title, album 
    FROM YourTable
    

    But it doesn’t seem as though your design is normalised if these are being repeated in each row.

    (Edit after comments.) It seems you need other columns but you don’t care which of the possible matching values are shown in these. In that case you can use GROUP BY As far as I understand in MySQL if you don’t specify selected columns in the GROUP BY you would get this but it’s completely invalid in all other RDBMSs.

    SELECT artist,
           title,
           album,
           id,
           link,
           artistlink,
           albumlink,
           songlength,
           ip,
           timestamp,
           image
    FROM   wp_air1nowplaying_unique
    GROUP  BY artist,
              title,
              album
    ORDER  BY artist ASC,
              album ASC,
              title ASC  
    

    In other RDBMSs you would need to wrap these in an aggregate. e.g.

    SELECT artist,
           title,
           album,
           MAX(id)         id,
           MAX(link)       link,
           MAX(artistlink) artistlink,
           MAX(albumlink)  albumlink,
           MAX(songlength) songlength,
           MAX(ip)         ip,
    

    The values returned could very well be from different rows with the above. To avoid this you would use a greatest-n-per-group query

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

Sidebar

Related Questions

I have 2 tables - first table holds all unique data (columns: title, artist,
I have Table with columns: Month and Year, and other data. All row in
I have a table named records with the columns: recordid, artist, album, description and
I have table with 3 columns A B C. I want to select *
I have a table with columns id, user I want to group by column
I have a table with columns 'id', 'name', 'value', 'uniqueConst' in both databases. Now
I have my table columns set like this: likes(id, like_message, timestamp) id is the
I have table tblEvents with columns dEvent_Date, dEvent_Time, tEvent_Emp_Code_num I must group all dates
I have a table displayed from a database. I would like to display the
If I had a table with the columns: Artist Album Song NumberOfListens ...is it

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.