Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Consider the following relations: EMP_NO EMP_NAME EMP_GRADE JOB_ID DEPTNO START_DATE EMP DEPTNO DEPTNAME LOC LOW_SAL HIGH_SAL DEPT Display the name concatenated with the job ID,
Consider the following relations:
EMP_NO | EMP_NAME | EMP_GRADE | JOB_ID | DEPTNO | START_DATE |
EMP
DEPTNO | DEPTNAME | LOC | LOW_SAL | HIGH_SAL |
DEPT
- Display the name concatenated with the job ID, separated by a comma and space, and name the column Employee and Title.
- Display the employee name, employee No, and start date of employees hired between February 1998, and May 1998. Order the query in ascending order by start date.
- Create a unique listing of all jobs that are in department 80. Include the location of the department in the output.
- Write a query to display job ID, total salary and employee name whose job_id contains “REP” and total salary is above 13000. Display the data in ascending order according to total salary.
- Create a query that displays the employees’ last names and indicates the amounts of their annual salaries with asterisks. Each asterisk signifies a thousand dollars.
Step by Step Solution
★★★★★
3.39 Rating (158 Votes )
There are 3 Steps involved in it
Step: 1
Drop table if it already exists DROP TABLE EMP DROP TABLE DEPT DROP TABLE JOB Create New table Create table EmpEMPNO int Primary key EMPNAME varchar30...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started