Use Jupyter Notebook Python 3 and save files as .ipynb Please comment the code thoroughly as I will be presenting it. Use company employee data from 1980s and 1990s stored in CSV files. You will...

1 answer below »
Please see 5 attached files. This should be SQL written in Python 3 using Jupyter Notebook. There is one instruction file and 6 CSV data files only five files can be attached so there other two will be provided by email.




Use Jupyter Notebook Python 3 and save files as .ipynb Please comment the code thoroughly as I will be presenting it. Use company employee data from 1980s and 1990s stored in CSV files. You will design the tables to hold data in the CSVs, import the CSVs into a SQL database, and answer questions about the data. In other words, you will perform: 1. Data Modeling 2. Data Engineering 3. Data Analysis Instructions Data Modeling Inspect the CSVs and sketch out an ERD of the tables. Feel free to use a tool like http://www.quickdatabasediagrams.com. Data Engineering · Use the information you have to create a table schema for each of the six CSV files. Remember to specify data types, primary keys, foreign keys, and other constraints. · Import each CSV file into the corresponding SQL table. Data Analysis Once you have a complete database, do the following: 1. List the following details of each employee: employee number, last name, first name, gender, and salary. 2. List employees who were hired in 1986. 3. List the manager of each department with the following information: department number, department name, the manager’s employee number, last name, first name, and start and end employment dates. 4. List the department of each employee with the following information: employee number, last name, first name, and department name. 5. List all employees whose first name is “Hercules” and last names begin with “B.” 6. List all employees in the Sales department, including their employee number, last name, first name, and department name. 7. List all employees in the Sales and Development departments, including their employee number, last name, first name, and department name. 8. In descending order, list the frequency count of employee last names, i.e., how many employees share each last name. Submission · Submit code in .ipybn · Create an image file of your ERD. · Create a .sql file of your table schemata. · Create a .sql file of your queries.
Answered Same DayOct 10, 2021

Answer To: Use Jupyter Notebook Python 3 and save files as .ipynb Please comment the code thoroughly as I will...

Sanghamitra answered on Oct 12 2021
150 Votes
-- Data Engineering --
-- Drop Tables if Existing
DROP TABLE IF EXISTS departments;
DROP TABLE IF EXISTS dept_emp;
DROP TABLE IF EXISTS dept_manag
er;
DROP TABLE IF EXISTS employees;
DROP TABLE IF EXISTS salaries;
DROP TABLE IF EXISTS titles;
-- Exported from QuickDBD: Specifying Data Types, Primary Keys & Foreign Keys
-- Import CSV Files Into Corresponding SQL Table
CREATE TABLE "departments" (
"dept_no" VARCHAR NOT NULL,
"dept_name" VARCHAR NOT NULL,
CONSTRAINT "pk_departments" PRIMARY KEY (
"dept_no"
)
);
CREATE TABLE "dept_emp" (
"emp_no" INT NOT NULL,
"dept_no" VARCHAR NOT NULL,
"from_date" DATE NOT NULL,
"to_date" DATE NOT NULL
);
CREATE TABLE "dept_manager" (
"dept_no" VARCHAR NOT NULL,
"emp_no" INT NOT NULL,
"from_date" DATE NOT NULL,
"to_date" DATE NOT NULL
);
CREATE TABLE "employees" (
"emp_no" INT NOT NULL,
"birth_date" DATE NOT NULL,
"first_name" VARCHAR NOT NULL,
"last_name" VARCHAR NOT NULL,
"gender" VARCHAR NOT NULL,
"hire_date" DATE NOT NULL,
CONSTRAINT "pk_employees" PRIMARY KEY (
"emp_no"
)
);
CREATE TABLE "salaries" (
"emp_no" INT NOT NULL,
"salary" INT NOT NULL,
"from_date" DATE NOT NULL,
"to_date" DATE NOT NULL
);
CREATE TABLE "titles" (
"emp_no" INT NOT NULL,
"title" VARCHAR NOT NULL,
"from_date" DATE NOT NULL,
"to_date" DATE NOT...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here