Question: Create a query that will show the game id, game date, home team and visitor team. In your results, only show the first 3 teams
Create a query that will show the game id, game date, home team and visitor team. In your results, only show the first 3 teams by date.
this is what I have... what date function do I use?
use football;
select gameID
, gameDate
, home_team
, visitor_team
from game;
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
