Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

(I need help with hands-on practice in working with DDL, DML, and Constraints using the MySQL workbench tool. In this practice assignment, points will be

(I need help with hands-on practice in working with DDL, DML, and Constraints using the MySQL workbench tool. In this practice assignment, points will be given to correct answers and clean and clear coding, e.g., formatting, indentation, consistent upper/lower cases, etc., where applicable. If you can show me how to do it and give an explanation too correctly, that would be greatly appreciated. Thank you.)

image text in transcribed

image text in transcribed

image text in transcribed

- You must submit your SQL scripts for each question. All Questions are equally weighted. - It is best practice to check answer with describe and/or select statements, where applicable. 1. Create Database schema called ClassAssignment Use ClassAssignment database for rest of the exercise. 2. Create a table called Project with the following columns: project_num INT NOT NULL PRIMARY KEY project_code CHAR(4) project_title VARCHAR(45) first_name VARCHAR(45) last_name VARCHAR(45) project_budget DECIMAL (5,2) 3. Modify project_num to auto_increment and also auto_increment starts from 10. 4. Modify project_budget datatype from decimal (5,2) to (10,2). 5. Insert following values into the Project table. DO NOT insert project_num. Auto_increment should start from 10 6. Create a table PayRoll with the following info: employee_nUm INT PRIMARY KEY AUTO_INCREMENT job_id INT NOT NULL job_desc VARCHAR(40) emp_pay DECIMAL (10,2) 7. Alter PayRoll table with the following, make sure to write each script separately. i. Add constraint on emp_pay so that only value greater than 10,000 can be inserted. ii. Add constraint on job_desc so that default value set to 'Data Analyst'. iii. Add column pay_date (DATE) after job_desc. 8. Add Foreign Key constraint in PayRoll table with job_id column referencing to project_num column in Project table. 9. Insert following values into PayRoll table. DO NOT insert employee_num and job_desc, those should be auto populated using auto_increment and default values, respectively. 10. Update emp_pay in PayRoll table for employee_num =2 with 10% emp_pay increase. 11. Create Project_backup table from project table you created above using bulk insert statement only for last_name 'Smith'. 12. Create VIEW as PayRoll_View from PayRoll table you created above. However, your VIEW should only contain job_id, job_desc and pay_date for job_id >10. 13. Create Index for pay_date on PayRoll table. 14. Delete all data from project_backup table but keep the table structure. 15. Write a DELETE script to delete a row from Project table where project_num =10. If there is an error, give a short explanation of what/why about error msg? 16. Solve the question 15 above without error, i.e. write a script how you can delete

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Design And Implementation

Authors: Shouhong Wang, Hai Wang

1st Edition

1612330150, 978-1612330150

More Books

Students also viewed these Databases questions

Question

Want to put your expertise in the spotlight?

Answered: 1 week ago

Question

What is operatiing system?

Answered: 1 week ago