Sie sind auf Seite 1von 19

Databases

Laboratory 3

Marin Iuliana
Lab Objectives

-> Using Conversion Functions and


Conditional Expressions
-> Reporting Aggregated Data Using the
Group Functions
-> Displaying Data from Multiple Tables
Using Joins
-> Using Subqueries to Solve Queries
SQL Syntax

 SELECT column_name, aggregate_function(column_name)


FROM table_name
WHERE column_name operator value
GROUP BY column_name
HAVING aggregate_function(column_name) operator value;
Using Conversion Functions and Conditional
Expressions

 Creating queries that use the TO_CHAR and TO_DATE


functions.
 Creating queries that use conditional expressions such as
CASE , SEARCHED CASE, and DECODE.

 Display each employee’s last name, hire date, and salary


review date, which is the first Monday after six months of
service. Label the column REVIEW. Format the dates to
appear in a format that is similar to “Monday, the Thirty-
First of July, 2000.”
SELECT last_name, hire_date,
TO_CHAR(NEXT_DAY(ADD_MONTHS(hire_date,
6),'MONDAY'),
'fmDay, "the" Ddspth "of" Month, YYYY') REVIEW
FROM employees;
Using Conversion Functions and Conditional
Expressions

 Using the TO_CHAR and TO_DATE functions, and conditional


expressions such as CASE, searched CASE, and DECODE.
SELECT last_name || ' earns ‘ || TO_CHAR(salary, 'fm$99,999.00')
|| ' monthly but wants ‘ || TO_CHAR(salary * 3, 'fm$99,999.00')
|| '.' "Dream Salaries"
FROM employees;
• Using the CASE function, write a query that displays the grade
of all employees based on the value of the JOB_ID column, using
the following data:
SELECT job_id, CASE job_id
WHEN 'ST_CLERK' THEN 'E'
WHEN 'SA_REP' THEN 'D'
WHEN 'IT_PROG' THEN 'C'
WHEN 'ST_MAN' THEN 'B'
WHEN 'AD_PRES' THEN 'A'
ELSE '0' END GRADE
FROM employees;
Using Conversion Functions and Conditional
Expressions

 Using the searched CASE syntax.


SELECT job_id, CASE
WHEN job_id = 'ST_CLERK' THEN 'E'
WHEN job_id = 'SA_REP' THEN 'D'
WHEN job_id = 'IT_PROG' THEN 'C'
WHEN job_id = 'ST_MAN' THEN 'B'
WHEN job_id = 'AD_PRES' THEN 'A'
ELSE '0' END GRADE
FROM employees;

 Using the searched DECODE syntax.


SELECT job_id, decode (job_id,
‘ST_CLERK', 'E', 'SA_REP', 'D', 'IT_PROG', 'C',
'ST_MAN', 'B', 'AD_PRES', 'A', '0')GRADE
FROM employees;
Reporting Aggregated Data Using the Group
Functions

 Group functions work across many rows to produce one result per
group.
 The WHERE clause restricts rows before inclusion in a group
calculation.
 Groups are restricted using HAVING.

 Display the minimum, maximum, sum, and average salary for each job
type.
SELECT job_id, ROUND(MAX(salary),0) "Maximum",
ROUND(MIN(salary),0) "Minimum",
ROUND(SUM(salary),0) "Sum",
ROUND(AVG(salary),0) "Average"
FROM employees
GROUP BY job_id;
Reporting Aggregated Data Using the Group
Functions

 Display the manager number and the salary of the lowest-paid


employee for that manager. Exclude anyone whose manager is not
known. Exclude any groups where the minimum salary is $6,000 or
less. Sort the output in descending order of salary.
SELECT manager_id, MIN(salary)
FROM employees
WHERE manager_id IS NOT NULL
GROUP BY manager_id
HAVING MIN(salary) > 6000
ORDER BY MIN(salary) DESC;
Reporting Aggregated Data Using the Group
Functions

 Display the total number of employees and, of that


total, the number of employees hired in 1998, 1999,
and 2000.
SELECT COUNT(*) total,
SUM(DECODE(TO_CHAR(hire_date, 'YYYY'),1998,1,0))"1998",
SUM(DECODE(TO_CHAR(hire_date, 'YYYY'),1999,1,0))"1999",
SUM(DECODE(TO_CHAR(hire_date, 'YYYY'),2000,1,0))"2000"
FROM employees;
Reporting Aggregated Data Using the Group
Functions

 Create a matrix query to display the job, the salary for that job
based on the department number, and the total salary for that
job, for departments 20, 50, 80, and 90, giving each column
an appropriate heading.

SELECT job_id "Job",


SUM(DECODE(department_id , 20, salary)) "Dept 20",
SUM(DECODE(department_id , 50, salary)) "Dept 50",
SUM(DECODE(department_id , 80, salary)) "Dept 80",
SUM(DECODE(department_id , 90, salary)) "Dept 90",
SUM(salary) "Total"
FROM employees
GROUP BY job_id;
Displaying Data from Multiple Tables
Using Joins

 Write a query for the HR department to produce the


addresses of all the departments. Use the LOCATIONS and
COUNTRIES tables. Show the location ID, street address,
city, state or province, and country in the output. Use a
NATURAL JOIN (INNER, LEFT OUTER, RIGHT OUTER.
The default is INNER join) to produce the results.
SELECT location_id, street_address, city,
state_province, country_name
FROM locations
NATURAL JOIN countries;
Displaying Data from Multiple Tables
Using Joins

 The HR department needs a report of employees in


Toronto. Display the last name, job, department
number, and the department name for all employees
who work in Toronto.
SELECT e.last_name, e.job_id, e.department_id,
d.department_name
FROM employees e JOIN departments d
ON (e.department_id = d.department_id)
JOIN locations l
USING (location_id)
WHERE LOWER(l.city) = 'toronto';
Using Subqueries to Solve Queries

 to find values that exist in one set of data and not in


another.
 Create a report that displays the employee number, last
name, and salary of all employees who earn more than
the average salary. Sort the results in ascending order by
salary.
SELECT employee_id, last_name, salary
FROM employees
WHERE salary > (SELECT AVG(salary)
FROM employees)
ORDER BY salary;
Using Subqueries to Solve Queries

 Create a report for HR that displays the last name and salary of
every employee who reports to King.
SELECT last_name, salary
FROM employees
WHERE manager_id = (SELECT employee_id
FROM employees
WHERE last_name = 'King');
 Create a report that displays a list of all employees whose salary
is more than the salary of any employee from department 60.
SELECT last_name FROM employees
WHERE salary > ANY (SELECT salary
FROM employees
WHERE department_id=60);
Activities

 1. Create a report that produces the following for each


employee: <employee last name> earns <salary> monthly
but wants <3 times salary.>. Label the column Dream
Salaries.
 2. Create a query that displays employees’ last names and
commission amounts. If an employee does not earn
commission, show “No Commission.” Label the column
COMM.
Hint: NVL(TO_CHAR(commission_pct), 'No Commission')
Activities

 3. Write a query to display the number of people with the same


job.
Hint: use GROUP BY job_id
 4. Find the difference between the highest and lowest salaries.
Label the column DIFFERENCE.
 5. The HR department needs a report of all employees with
corresponding departments. Write a query to display the last
name, department number, and department name for these
employees.
Hint: FROM x JOIN y USING (department_id)
 6. Create a report to display employees’ last names and employee
numbers along with their managers’ last names and manager
numbers. Label the columns Employee, Emp#, Manager, and
Mgr#, respectively.
Hint: FROM x xx JOIN y yy ON (xx.smth1 = yy.smth2)
Activities

 7. Modify ex. 6 to display all employees, including King,


who has no manager.
Hint:
FROM employees w
LEFT OUTER JOIN employees m
ON (w.manager_id = m.employee_id)
 8. Write a query that displays the employee number and
last name of all employees who work in a department with
any employee whose last name contains the letter “u.”
Hint: WHERE x LIKE ‘%u%’
Activities

 9. The HR department needs a report that displays


the last name, department number, and job ID of all
employees whose department location ID is 1700.
 10. Create a report for HR that displays the
department number, last name, and job ID for every
employee in the Executive department.
Hint: WHERE department_name = 'Executive'

Das könnte Ihnen auch gefallen