(Employee Database) In Section 10 5, we introduced an employee payro

(Employee Database) In Section 10.5, we introduced an
employee-payroll hierarchy to calculate each employee’s
payroll. In this exercise, we provide a database of
employees that corresponds to the employee -payroll
hierarchy. (A SQL script to create the employees database
is provided with the examples for this chapter.) Write an
application that allows the user to:
a) Add employees to the employee table.
b) Add payroll information to the appropriate table for
each new employee.
For example, for a salaried employee add the payroll
information to the salariedEmployees table. Figure 24.33 is
the entity-relationship diagram for the employees
database.
If i can get something without errors that will be great.
Thanks salaried Employees social SecurityNumber week ly
Salary bonus hourlyEmployees social SecurityNumber hours
wage bonus employees social SecurityNumber firstName
last Name birthday employee Type departmentName
commission Employees n social Security Number gross
Sales commission Rate bonus ission Employee s social
SecurityNumber gross Sales commission Rate base Salary
bonus
Solution
Tables creation :
=================
Employees :
———create table employees
(
socialSecurityNumber varchar2(20) primary key,
firstName varchar2(20),
lastname varchar2(20),
birthday date,
employeeType varchar2(20),
departmentName varchar2(20)
);
salariedEmployees:
—————-create table salariedEmployees
(
socialSecurityNumber varchar2(20) FOREIGN KEY
(socialSecurityNumber) REFERENCES
Employees(socialSecurityNumber),
weeklySalary number(10),
bonus number(10)
);
commissionEmployees:
——————-
create table commissionEmployees
(
socialSecurityNumber Varchar2(20) FOREIGN KEY
(socialSecurityNumber) REFERENCES
Employees(socialSecurityNumber),
grassSales number(10),
commisionRate number(10),
bonus number(10)
);
hourlyEmployees:
—————create table hourlyEmployes
(
socialSecurityNumber Varchar2(20) FOREIGN KEY
(socialSecurityNumber) REFERENCES
Employees(socialSecurityNumber),
hours number(10),
wage number(10),
bonus number(10)
);
basePluscommissionEmployees:
—————————create table basePluscommissionEmployees
(
socialSecurityNumber Varchar2(20) FOREIGN KEY
(socialSecurityNumber) REFERENCES
Employees(socialSecurityNumber),
grossSales number(10),
commissionRate number(10),
baseSalary number(10),
bonus number(10)
);
Insearting data into a tables:
==============================
Employees:
——–insert into Employees
(
socialSecurityNumber ,
firstName ,
lastname ,
birthday ,
employeeType ,
departmentName
)
values(\’123\’,\’ravi\’,\’teja\’,\’18-june1993\’,\’salariedEmployees\’,\’dovelopment\’);
salariedEmployees:
—————–insert into salariedEmployees
(
socialSecurityNumber ,
weeklySalary ,
bonus
)
values(\’123\’,5000,3000);
commissionEmployees:
——————insert into commissionEmployees
(
socialSecurityNumber ,
grassSales ,
commisionRate ,
bonus
)
values(\’123\’,12000,5000,3000);
hourlyEmployees:
—————insert into hourlyEmployes
(
socialSecurityNumber ),
hours,
wage ,
bonus
)
values(\’123\’,7,1000,3000);
basePluscommissionEmployees:
—————————insert into basePluscommissionEmployees
(
socialSecurityNumber ,
grossSales ,
commissionRate ,
baseSalary ,
bonus
)
values(\’123\’,15000,3000,6000,2000);
Establishing a connection between two tables:
=====================================
=========
connection between Employee table to salariedEmployee
table:
————————————————————-SELECT
employees.fristName,employees.fristName,salariedEmploye
es.weeklySalary,
FROM employees ,salariedEmployees
WHERE employees.socialSecurityNumber =
salariedEmployees.socialSecurityNu mber
AND salariedEmployees.bonus=3000;
* from all my explanation is done using the ER diagram as
you given like that you insert
the data and then connection is establish between the
tables using the above querry.
Name:
Description:

Calculate the price
Make an order in advance and get the best price
Pages (550 words)
$0.00
*Price with a welcome 15% discount applied.
Pro tip: If you want to save more money and pay the lowest price, you need to set a more extended deadline.
We know how difficult it is to be a student these days. That's why our prices are one of the most affordable on the market, and there are no hidden fees.

Instead, we offer bonuses, discounts, and free services to make your experience outstanding.
How it works
Receive a 100% original paper that will pass Turnitin from a top essay writing service
step 1
Upload your instructions
Fill out the order form and provide paper details. You can even attach screenshots or add additional instructions later. If something is not clear or missing, the writer will contact you for clarification.
Pro service tips
How to get the most out of your experience with StudyAcademia.com
One writer throughout the entire course
If you like the writer, you can hire them again. Just copy & paste their ID on the order form ("Preferred Writer's ID" field). This way, your vocabulary will be uniform, and the writer will be aware of your needs.
The same paper from different writers
You can order essay or any other work from two different writers to choose the best one or give another version to a friend. This can be done through the add-on "Same paper from another writer."
Copy of sources used by the writer
Our college essay writers work with ScienceDirect and other databases. They can send you articles or materials used in PDF or through screenshots. Just tick the "Copy of sources" field on the order form.
Testimonials
See why 20k+ students have chosen us as their sole writing assistance provider
Check out the latest reviews and opinions submitted by real customers worldwide and make an informed decision.
11,595
Customer reviews in total
96%
Current satisfaction rate
3 pages
Average paper length
37%
Customers referred by a friend
OUR GIFT TO YOU
15% OFF your first order
Use a coupon FIRST15 and enjoy expert help with any task at the most affordable price.
Claim my 15% OFF Order in Chat