2 restricting and sorting data

29
2 Restricting and Sorting Data Important Legal Notice: Materials on this lecture are from a book titled “Oracle Education” by Kochhar, Gravina, and Nathan (1999), published by Oracle Corp. For further information, visit www.oracle.com This presentation must be used for only education purpose for students at Lake Superior State University . LSSU uses Oracle systems for HRIS & Accounting Systems as a database platform embedded on enterprise applications.a member of Oracle Academic Initiatives (OAI) and has used Oracle

Upload: lou

Post on 22-Feb-2016

33 views

Category:

Documents


0 download

DESCRIPTION

2 Restricting and Sorting Data. Important Legal Notice: Materials on this lecture are from a book titled “Oracle Education” by Kochhar , Gravina , and Nathan (1999), published by Oracle Corp. For further information, visit www.oracle.com - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: 2  Restricting and Sorting Data

2 Restricting and Sorting Data

Important Legal Notice: Materials on this lecture are from a book titled “Oracle

Education” by Kochhar, Gravina, and Nathan (1999), published by Oracle Corp.

For further information, visit www.oracle.com This presentation must be used for only education purpose for

students at Lake Superior State University. LSSU uses Oracle systems for HRIS & Accounting Systems as a database platform embedded on enterprise applications.a member of Oracle Academic Initiatives (OAI) and has used Oracle systems for HRIS & Accounting Systems as a database platform embedded on PeopleSoft ERP system, since 1999.

Page 2: 2  Restricting and Sorting Data

Objectives

After completing this lesson, you should be able to do the following:

• Limit the rows retrieved by a query• Sort the rows retrieved by a query

Page 3: 2  Restricting and Sorting Data

Limiting Rows Using a SelectionEMPNO ENAME JOB … DEPTNO7839 KING PRESIDENT 107698 BLAKE MANAGER 307782 CLARK MANAGER 107566 JONES MANAGER 20

EMPNO ENAME JOB … DEPTNO7839 KING PRESIDENT 107782 CLARK MANAGER 107934 MILLER CLERK 10

EMP

EMP

“…retrieve all employees in department 10”

Page 4: 2  Restricting and Sorting Data

Limiting Rows Selected

• Restrict the rows returned by using the WHERE clause.

• The WHERE clause follows the FROM clause: SELECT > FROM > WHERE

SELECT [DISTINCT] {*| column [alias], …}FROM tableWHERE condition(s);

Page 5: 2  Restricting and Sorting Data

Using the WHERE clause

SQL> SELECT ename, job, deptno 2 FROM emp 3 WHERE job =‘CLERK’;

ENAME JOB DEPTNOJAMES CLERK 30SMITH CLERK 20ADAMS CLERK 20MILLER CLERK 10

Page 6: 2  Restricting and Sorting Data

Character Strings and Dates• Character strings and date values are enclosed

in single quotation marks.• Character values are case sensitive (MS-Access

is not case sensitive) and date values are format sensitive.

• The default date format is DD-MON-YY.

SQL> SELECT ename, job, deptno 2 FROM emp 3 WHERE ename = ‘JAMES’;

Page 7: 2  Restricting and Sorting Data

Comparison Operators

Operator Meaning = Equal to > Greater than

>= Greater than or equal to < Less than

<= Less than or equal to <> Not equal to

Page 8: 2  Restricting and Sorting Data

Using the Comparison Operators

SQL> SELECT ename, sal, comm 2 FROM emp 3 WHERE sal <= comm;

ENAME SAL COMMMARTIN 1250 1400

Page 9: 2  Restricting and Sorting Data

Other Comparison Operators

Operator Meaning

BETWEEN…AND… Between two values (inclusive)

IN(list) Match any of a list of values

LIKE Match a character pattern

IS NULL Is a null value

Page 10: 2  Restricting and Sorting Data

Using the BETWEEN OperatorUse the BETWEEN operator to display rows based on

a range of values

SQL>SELECT ename, sal 2 FROM emp 3 WHERE sal BETWEEN 1000 AND 1500;

ENAME SALMARTIN 1250TURNER 1500WARD 1250ADAMS 1100MILLER 1300

Lower HigherLimit Limit

Page 11: 2  Restricting and Sorting Data

Using the IN OperatorUse the IN operator to test for values in a list.

SQL> SELECT empno, ename, sal, mgr 2 FROM emp 3 WHERE mgr IN (7902, 7566, 7788) ;

EMPNO ENAME SAL MGR7902 FORD 3000 75667369 SMITH 800 79027788 SCOTT 3000 75667876 ADAMS 1100 7788

Page 12: 2  Restricting and Sorting Data

Using the LIKE Operator• Use the LIKE operator to

perform wildcard searches of valid search string values.

• Search conditions can contain either literal characters or numbers.

- % denotes zero or many characters; Case sensitive.

- _ denotes one character.

SQL> SELECT ename 2 FROM emp 3 WHERE ename LIKE ‘S%’;

Oracle MS-Access 2010% *_ ?Case Sensitive Not Case

Sensitive

Page 13: 2  Restricting and Sorting Data

Using the LIKE Operator• You can combine pattern-matching character.

• You can use the ESCAPE identifier to search for “%” or “_”.

SQL>SELECT ename 2 FROM emp 3 WHERE ename LIKE ‘_A%’;

ENAMEMARTINJAMESWARD

MS-Access 2010: WHERE ename LIKE ‘?A*’;

Page 14: 2  Restricting and Sorting Data

Using the IS NULL OperatorTest for null values with the IS NULL operator.

SQL> SELECT ename, mgr 2 FROM emp 3 WHERE mgr IS NULL;

ENAME MGR

KING

Page 15: 2  Restricting and Sorting Data

Logical Operators

Operator Meaning AND Returns TRUE if both component

conditions are TRUE OR Returns TRUE if either component

condition is TRUE NOT Returns TRUE if the following

condition is FALSE

Page 16: 2  Restricting and Sorting Data

Using the AND OperatorAND requires both conditions to be TRUE.

SQL>SELECT empno, ename, job, sal 2 FROM emp 3 WHERE sal >= 1100 4 AND job=‘CLERK’;

EMPNO ENAME JOB SAL7876 ADAMS CLERK 11007934 MILLER CLERK 1300

Page 17: 2  Restricting and Sorting Data

Using the OR OperatorOR requires either condition to be TRUE

SQL>SELECT empno, ename, job, sal 2 FROM emp 3 WHERE sal >= 1100 4 OR job=‘CLERK’;

EMPNO ENAME JOB SAL7839 KING PRESIDENT 50007698 BLAKE MANAGER 28507782 CLARK MANAGER 24507566 JONES MANAGER 29757654 MARTIN SALESMAN 1250…7900 JAMES CLERK 950...

Page 18: 2  Restricting and Sorting Data

Using the NOT OperatorSQL>SELECT ename, job 2 FROM emp 3 WHERE job NOT IN 4 (’CLERK’,‘MANAGER’, ‘ANALYST’);

ENAME JOBKING PRESIDENTMARTIN SALESMANALLEN SALESMANTURNER SALESMANWARD SALESMAN

Page 19: 2  Restricting and Sorting Data

Rules of Precedence (Priority)Order Evaluated Operator

1 All comparison operators 2 NOT 3 AND 4 OR

Override rules of precedence by using parentheses.

Page 20: 2  Restricting and Sorting Data

Rules of PrecedenceSQL>SELECT ename, job, sal 2 FROM emp 3 WHERE job=‘SALESMAN’ 4 OR job=‘PRESIDENT’ 5 AND sal>1500;

ENAME JOB SALKING PRESIDENT 5000MARTIN SALESMAN 1250ALLEN SALESMAN 1600TURNER SALESMAN 1500WARD SALESMAN 1250

Page 21: 2  Restricting and Sorting Data

Rules of Precedence (continued)Use parentheses to force priority.

SQL>SELECT ename, job, sal 2 FROM emp 3 WHERE ( job=‘SALESMAN’ 4 OR job=‘PRESIDENT’ ) 5 AND sal > 1500;

ENAME JOB SALKING PRESIDENT 5000ALLEN SALESMAN 1600

Page 22: 2  Restricting and Sorting Data

ORDER BY Clause• Sort rows with the ORDER BY clause

– ASC: ascending order, default– DESC: descending order

• The ORDER BY clause comes last in the SELECT statement

SQL>SELECT ename, job, deptno, hiredate 2 FROM emp 3 ORDER BY hiredate;

ENAME JOB DEPTNO HIREDATESMITH CLERK 20 17-DEC-80ALLEN SALESMAN 30 20-FEB-81…14 rows selected.

Page 23: 2  Restricting and Sorting Data

MS-Access: HIREDATE Data Type: Date/Time

Page 24: 2  Restricting and Sorting Data

Sorting in Descending Order

SQL>SELECT ename, job, deptno, hiredate 2 FROM emp 3 ORDER BY hiredate DESC;

ENAME JOB DEPTNO HIREDATEADAMS CLERK 20 12-JAN-83SCOTT ANALYST 20 09-DEC-82MILLER CLERK 10 23-JAN-82JAMES CLERK 30 03-DEC-81FORD ANALYST 20 03-DEC-81KING PRESIDENT 10 17-NOB-81MARTIN SALESMAN 30 28-DEP-81…14 rows selected

Page 25: 2  Restricting and Sorting Data

Sorting by Column AliasSQL>SELECT ename, job, sal*12 annsal 2 FROM emp 3 ORDER BY annsal;

EMPNO ENAME ANNSAL7369 SMITH 96007900 JAMES 114007876 ADAMS 132007654 MARTIN 150007521 WARD 150007934 MILLER 156007844 TURNER 18000…14 rows selected.

MS-Access: See the next page.

Page 26: 2  Restricting and Sorting Data

MS-Access: Sorting by Column Alias

SQL>SELECT ename, job, sal*12 AS annsal 2 FROM emp 3 ORDER BY annsal;

Ignore “Enter Parameter Value,” just click on OK.

Page 27: 2  Restricting and Sorting Data

Sorting by Multiple Columns• The order of ORDER BY list is the order of sort.

• You can sort by a column that is not in the SELECT list.

SQL>SELECT ename, deptno, sal 2 FROM emp 3 ORDER BY deptno, sal DESC;

ENAME DEPTNO SALKING 10 5000CLARK 10 2450MILLER 10 1300FORD 20 3000…14 rows selected.

Page 28: 2  Restricting and Sorting Data

SummarySELECT [DISTINCT] {*| column [alias], …}FROM table[WHERE condition(s)][ORDER BY {column, expr, alias} [ASC|DESC]];

Page 29: 2  Restricting and Sorting Data

Practice Overview

• Selecting data and changing the order of rows displayed

• Restricting rows by using the WHERE clause

• Using the double quotation marks in column aliases