14.a.    Get a list of the dates (ordered by the date of the game) that Dallas (Team_ID = ‘1234’) played at home. 5 points

 

 

            SELECT gamedate

          FROM game

          WHERE home_team = ‘1234’

          ORDER by gamedate;

 

This would yield the output:

 

GAMEDATE

-----------------

11-NOV-00

26-DEC-00

14-JAN-01

24-JAN-01

04-FEB-01