Using Microsoft Access, we are going to define a database called Student Advising consisting of two tables: Students and Faculty.
The Student table has the following fields with the following properties:
The Faculty table has the following fields with the following properties:
Additionally, you will create two queries for Student. One that lists every students' First Name, Last Name, Major and Credits (in that order). The second query will list the First Name, Last Name, Credits for every studentwhose advisor's ID is 2222.
Student ID | Last Name | First Name | Major | Advisor ID | Credits |
---|---|---|---|---|---|
1111 | Smith | John | Chemistry | 2222 | 23 |
1122 | Jones | Thomas | Music | 3333 | 45 |
2244 | Siegfried | Robert | Computer Sc. | 4444 | 30 |
3344 | Goldberg | Stephen | Chemistry | 2222 | 32 |
4455 | Wayne | Anthony | History | 5555 | 24 |
4455 | Kent | Clark | English | 6666 | 38 |
Faculty ID | Last Name | First Name | Office Phone |
---|---|---|---|
2222 | Curie | Pierre | 2345 |
3333 | Copland | Aaronx | 4567 |
4444 | Hooper | Grace | 5678 |
5555 | Kelly | Patrick | 6789 |
6666 | Ash | Craig | 2234 |