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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T14:57:26+00:00 2026-06-18T14:57:26+00:00

I had this question at a job interview yesterday and although it seemed pretty

  • 0

I had this question at a job interview yesterday and although it seemed pretty straight fwd I couldn’t figure it out and it’s kept me awake all night thinking about it.

The system records data about a scrabble league there is a members table, a games table and a joining member_games table.

members: member_id, name : pk(member_id)
member_games: game_id, member_id, score : pk(game_id, member_id)
games: game_id, location, date : pk(game_id)

members
1, mick
2, keith
3, charlie

member_games
1, 1, 50
1, 2, 60
2, 1, 45
2, 3, 105
3, 1, 30
3, 3, 120

game
1, london, 2012-12-01
2, richmond, 2012-12-02
3, leeds, 2012-12-03

How do you formulate an SQL query to find out the number of wins for the member_id = 1?

  • 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-18T14:57:28+00:00Added an answer on June 18, 2026 at 2:57 pm

    The following query will give you the number of wins for member_id 1.

    select count(*) as number_of_wins
        from member_games as mg1
        where member_id = 1
        and not exists (select 1
            from member_games as mg2
            where mg2.game_id = mg1.game_id
            and mg2.member_id <> mg1.member_id
            and mg2.score >= mg1.score);
    

    The following query will give you the list of members with their respective number of wins.

    select m.*,
        (select count(*) from member_games as mg1
            where member_id = m.member_id
            and not exists (select 1
                from member_games as mg2
                where mg2.game_id = mg1.game_id
                and mg2.member_id <> mg1.member_id
                and mg2.score >= mg1.score)
        ) as number_of_wins
        from members as m;
    

    These queries do not consider ties for first place as wins.

    I created a MySQL SQL Fiddle demo and a SQL Server SQL Fiddle demo.

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

Sidebar

Related Questions

This question stems from a job interview I had. The interviewer asked me about
This question has two parts. Part 1. Yesterday I had some code which would
I had an interesting job interview experience a while back. The question started really
I always had this question: When i dont mind the exact floating number Which
I had asked this question Adding more attributes to LINQ to SQL entity Now,
I know this question had been asked a hundred times, but I have difficulties
I know that this question had already been asked a couple of times before,
I had this working at some point, as I had a question about this
In this question, I had help in simplifying and forming a valid complicated JSON
I found this question which had an answer to the question of performing batch

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.