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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T05:06:15+00:00 2026-06-05T05:06:15+00:00

I am creating a MySQL database for quiz bowl. The design is to have

  • 0

I am creating a MySQL database for quiz bowl. The design is to have a cross table containing all game results, the cross table having the form:

CREATE TABLE game_results(
  id SMALLINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
  game_id MEDIUMINT NOT NULL,
  team_id SMALLINT NOT NULL,
  score MEDIUMINT);

My question is how does one count the number of wins a team has (that is, the number of times a team is the highest scoring team in a particular game) from the table game_results using MySQL.

  • 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-05T05:06:17+00:00Added an answer on June 5, 2026 at 5:06 am
    SELECT COUNT(1) AS wins FROM game_results AS gr1
    LEFT JOIN game_results AS gr2 ON gr1.game_id=gr2.game_id AND gr2.team_id != 1234
    WHERE gr1.team_id = 1234 AND gr1.score > gr2.score
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an array that I am creating from a MySql database and encoding
I am creating an update form where previously submitted information from a mysql database
I have a MySQL database which contains a table of users. The primary key
I have a table in my Mysql database, which is used for authentication. And
I have problem in creating tinyint field in MySQL database using Hibernate. I used
After dynamically creating a client-side table based on SELECT information retrieved from MySql database,
I have a mysql database with a single table, that includes an autoincrement ID,
I am working on creating a PHP/mysql quiz application. I outlined my table structure
I recently started on creating a 'game' using PHP and a mysql database. In
I have a problem in creating a search script in mysql database. I tried

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.