data info
Project of BUSA 326 (Summer 2018)
This project is an individual effort. Due date of the project is on August 8, 2018.
You write your SQL query statements for each question and upload it to the
assigned folder. The name of the file should be
“Project_YourLastName_YourFirstName.sql”.
The project has two parts; the first part is creating a simple database based on the
given ERD and in the second part, answer the questions based on the given
database.
1) Question 1 (40 points): Consider the following figure that represents ERD with
attributes of each entity and their datatype. You need to create the database
“MUSIC” which has four tables; Album, Singer, Album_Gener, and Gener. The
columns of these tables and the data type of them are given in the following
table. based on the following figure. The enter few (at least four records)
records for each table.
Album
Id int PK title varchar(128) Singer_id int FK Published date
Singer
Id int PK firstname varchar(32) lastname varchar(32) birthdate date
Genre
Id int PK name varchar(128)
Album_Genre
Id int PK Genre_Id int FK Album_Id int FK
2) Question 2: You need the SalesOrdersExample database to complete this
project. To install the database, first download Data code 1 and run it, then
download Data code 2 and run (provided on eCollege).
Now answer the following questions.
2.1: (20 Points) Use the customers table inside of the salesordersexample
database, and write a query statement to show records from the CustFirstName,
CustLastName, and CustCity columns.
2.2: (20 Points) Use the employees table inside of the salesordersexample
database, and write a query statement to show the employee’s EmployeeID,
EmpFirstName, EmpLastName, and EmpPhoneNumber, if the employee is living in
the 98413 zip code.
2.3. (20 Points) Use INNER JOIN to create a query result. In this query result, list
each vendor’s name and the name of each product the vendor has supplied to our
company. You should use the Vendors, Product_Vendors, and the Products tables
in the database to complete this task.