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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T10:45:58+00:00 2026-05-15T10:45:58+00:00

my table have several records which has the same MemberID. i want to result

  • 0

my table have several records which has the same MemberID. i want to result out only one record.

select DISTINCT(MemberID)  from AnnualFees;

then result will come. but i want to show the other column data also but when i do this

select DISTINCT(MemberID),StartingDate,ExpiryDate,Amount  from AnnualFees;

all the details including same MemberID data also displaying.

can someone help me.

  • 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-15T10:45:58+00:00Added an answer on May 15, 2026 at 10:45 am

    Assuming you just want any row at random for each memberid than you can do this:

    select memberid, this, that, theother
    from
    (
    select memberid, this, that, theother,
           row_number() over (partition by memberid order by this) rn
    from   annualfees
    )
    where rn = 1;
    

    If you wanted a specific row per memberid, e.g. the one with the most recent StartDate then you could modify it to:

    select memberid, this, that, theother
    from
    (
    select memberid, this, that, theother,
           row_number() over (partition by memberid order by StartDate desc) rn
    from   annualfees
    )
    where rn = 1;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table called records which has several columns, one of which is
I have an EAV table in SQL which as usual has several records for
I have a mysql table that have several records linked to one particular tag.
I have a database which has records with several fields containing some info. To
I have several values in a temp table called #tempIQ and I want to
Hi i'm trying to create a league table in which i have several different
I have a table in MySql DB which I want to load it to
I have a sql server 2005 table called ZipCode, which has all the US
Using Rails 3.0.7. I have a simple form which shows all records from one
I have a task_id table which has two columns: `tid`:task id, `state`:0:unfinished,1:processing,2:finished It's easy

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.