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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T04:39:34+00:00 2026-06-08T04:39:34+00:00

I am trying to retrieve schedules for each team based on my table below,

  • 0

I am trying to retrieve schedules for each team based on my table below, but I am having some trouble getting the team names to display. Here are my tables:

TEAM
(team_id,
team_name,
team_mascot,
etc.)

GAME
(game_id,
game_date,
game_home_team,
game_visitor_team,
game_home_score,
game_visitor_score,
game_complete)

Here is my current query. I am able to get the team’s id values with this but I need the team names as id values won’t do me much good.

SELECT game_home_team, game_visitor_team, game_date
FROM game 
INNER JOIN team home ON home.team_id = game_home_team 
INNER JOIN team visitor ON visitor.team_id = game_visitor_team
WHERE game_home_team = ? 
OR game_visitor_team = 6 
ORDER BY game_date ASC;

How can I retrieve the team names with this query and also display a result such as W or L depending on the score for the game? Thanks so much in advance.

  • 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-08T04:39:37+00:00Added an answer on June 8, 2026 at 4:39 am
    SELECT
       home.team_name AS home_team,
       visitor.team_name AS visitor_team,
       game_date,
       IF(
          game_home_score = game_visitor_score, 
          'Tie', 
          IF(
             game_home_score > game_visitor_score,
             'Hometeam',
             'Visitorteam'
          )
       ) AS Winner
    FROM game 
    INNER JOIN team home ON home.team_id = game_home_team 
    INNER JOIN team visitor ON visitor.team_id = game_visitor_team
    WHERE game_home_team = ? 
    OR game_visitor_team = 6 
    ORDER BY game_date ASC;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to retrieve a column from another related table, and display that
Trying to retrieve blogs (see model description below) that contain entries satisfying some criteria:
I am basically trying to retrieve some data from a MySql server, and display
I am trying retrieve user name from the code through graph api, the below
Iam trying to retrieve data from mysql database into stylesheet.php but it is not
I'm trying to retrieve a list of schedules that occur between a start and
Trying to retrieve related data from the relationships table, after user clicks on the
Im trying to retrieve some data from JSON object which holds location information such
I am trying to retrieve and store ID's for each item retrieved from my
I am trying to retrieve and display information about current weather from a JSON

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.