Need help with your Discussion

Get a timely done, PLAGIARISM-FREE paper
from our highly-qualified writers!

glass
pen
clip
papers
heaphones

University of Chicago Database Design by Using SQL Tool Project

University of Chicago Database Design by Using SQL Tool Project

University of Chicago Database Design by Using SQL Tool Project

Description

Case:

An employee can work on one and only one project but a project can be done by one or many employees. Projects are tracked by project ID, project name, duration (number of days), and completion date. We track employees by employee ID, their first name, last name, and date of birth (DOB). We have 2 employees who are working on 2 projects as follows:

Project:

  • Project_id= 10001, project_name=outsourcing, duration=120 days, completion_date=1/25/2017
  • Project_id= 10002, project_name=housing, duration=255 days, completion_date=11/01/2018

Employee:

  • Emp_id=22001, Sam Adams, DOB=1/13/1964 (works on the housing project)
  • Emp_id=22002, Rachel Williams, DOB=10/15/1999 (works on the outsourcing project)

NOTE: in order to make changes in the tables, if needed, we need to make a quick change in the Workbench DBMS. Go to Edit > Preferences. Click on “SQL Editor” and on the right at the very bottom, uncheck “Safe Updates”. Next, reconnect to the database (click on the icon that says “Reconnect to DBMS”).

Step 1. Identify entities, their attributes, and their relationships.

Step 2. Diagram entities (attributes included) and their relationships (with min and max on both sides) using crow’s foot notation.

Step 3. Create a database, tables, and add values in the tables using SQL.

CREATE DATABASE AND TABLES.

  • Create a database and name it your UscID (if you have already created the database named with your Usc ID, skip this step).
  • Create tables for project and employee in the database named with your Usc ID.
  • Add 2 records in the project table and 2 records in the employee table.

Step 2. Diagram entities (attributes included) and their relationships using crow’s foot notation.

Step 3. Create a database, tables, and add values in the tables using SQL (3 points).

CREATE DATABASE AND TABLES.

  • Create a database and name it your USF ID (if you have already created the database named with your USF ID, skip this step).
  • Create tables for project and employee in the database named with your USF ID.

create database ldu5;

Project table:

create table project
(project_id int primary key not null,
project_name varchar(250),
duration int,
completion_date date);

Employee table:

create table employee
(emp_id int primary key not null,
first_name varchar(250),
last_name varchar(250),
dob date,
project_id int,

foreign key (project_id) references project(project_id));

Have a similar assignment? "Place an order for your assignment and have exceptional work written by our team of experts, guaranteeing you A results."

Order Solution Now

Our Service Charter


1. Professional & Expert Writers: Eminence Papers only hires the best. Our writers are specially selected and recruited, after which they undergo further training to perfect their skills for specialization purposes. Moreover, our writers are holders of masters and Ph.D. degrees. They have impressive academic records, besides being native English speakers.

2. Top Quality Papers: Our customers are always guaranteed of papers that exceed their expectations. All our writers have +5 years of experience. This implies that all papers are written by individuals who are experts in their fields. In addition, the quality team reviews all the papers before sending them to the customers.

3. Plagiarism-Free Papers: All papers provided by Eminence Papers are written from scratch. Appropriate referencing and citation of key information are followed. Plagiarism checkers are used by the Quality assurance team and our editors just to double-check that there are no instances of plagiarism.

4. Timely Delivery: Time wasted is equivalent to a failed dedication and commitment. Eminence Papers are known for the timely delivery of any pending customer orders. Customers are well informed of the progress of their papers to ensure they keep track of what the writer is providing before the final draft is sent for grading.

5. Affordable Prices: Our prices are fairly structured to fit in all groups. Any customer willing to place their assignments with us can do so at very affordable prices. In addition, our customers enjoy regular discounts and bonuses.

6. 24/7 Customer Support: At Eminence Papers, we have put in place a team of experts who answer all customer inquiries promptly. The best part is the ever-availability of the team. Customers can make inquiries anytime.

We Can Write It for You! Enjoy 20% OFF on This Order. Use Code SAVE20

Stuck with your Assignment?

Enjoy 20% OFF Today
Use code SAVE20