Module 9 SQL challenge. Project required import of CSV files into a SQL data base. Create an ERD of the DB tables schema and perform 8 queries.
- Queries
- Prerequisites
- Notes
- [License](GNU General Public License v3.0)
- [Authors](Victor R.)
- Contact Information
-
List the employee number, last name, first name, sex, and salary of each employee.
-
List the first name, last name, and hire date for the employees who were hired in 1986.
-
List the manager of each department along with their department number, department name, employee number, last name, and first name.
-
List the department number for each employee along with that employee’s employee number, last name, first name, and department name.
-
List first name, last name, and sex of each employee whose first name is Hercules and whose last name begins with the letter B.
-
List each employee in the Sales department, including their employee number, last name, and first name.
-
List each employee in the Sales and Development departments, including their employee number, last name, first name, and department name.
-
List the frequency counts, in descending order, of all the employee last names (that is, how many employees share each last name).
Postgres SQL v. 17.2 or above PGadmin v. 4
When importing the csv tables ensure tables are imported with the least dependencies first. Remove 'last updated' from column selection in import box in SQL DB dialog box.