Assignments on Joins

See the below tables and solve the given queries.

Table: Employee

 

Employee_id

First_Name

Last_Name

Salary

Joining_date

Department

1

John

Abraham

1000000

01JAN13 12.00.00 AM

Banking

2

Michael

Clarke

800000

01JAN13 12.00.00 AM

Insurance

3

Roy

Thomas

700000

01FEB1312.00.00 AM

Banking

4

Tom

Jose

600000

01FEB1312.00.00 AM

Insurance

5

Jerry

Pinto

650000

01FEB1312.00.00 AM

Insurance

6

Philip

Mathew

750000

01JAN1312.00.00 AM

Services

7

TestName1

123

650000

01JAN1312.00.00 AM

Services

8

TestName2

Lname%

600000

01FEB1312.00.00 AM

Insurance

 

Table: Incentives

 

Employee_ref_id

Incentive_date

Incentive_amount

1

01-FEB-13

5000

2

01-FEB-13

3000

3

01-FEB-13

4000

1

01-JAN-13

4500

2

01-JAN-13

3500

 

Questions

  1. Select department, total salary with respect to a department from employee table where total salary greater than 800000 order by Total_Salary descending.
  2. Select employee details from employee table if data exists in incentive table.
  3. Get Employee ID's of those employees who didn't receive incentives without using sub query.
  4. Select 20 % of salary from John, 10% of Salary for Roy and for other 15 % of salary from employee table.
  5. Select first_name, incentive amount from employee and incentives table for those employees who have incentives.
  6. Select first_name, incentive amount from employee and incentives table for those employees who have incentives and incentive amount greater than 3000.
  7. Select first_name, incentive amount from employee and incentives table for all employees who didn't get incentives.
  8. Select first_name, incentive amount from employee and incentives table for all employees who got incentives using left join.

Note:

  1. Upload screenshots containing query and its output in either jpg or png format.
  2. Name of screenshot file name must be Question No. i.e. 1.jpg or 1.png.
  3. Optional questions are not required to submit.