34
Restricting and Sorting Data

Restricting and Sorting Data

  • Upload
    arien

  • View
    25

  • Download
    2

Embed Size (px)

DESCRIPTION

Restricting and Sorting Data. EMP. EMPNO ENAME JOB ... DEPTNO 7839KINGPRESIDENT 10 7698BLAKEMANAGER 30 7782CLARKMANAGER 10 7566JONESMANAGER 20. " … retrieve all employees in department 10". EMP. EMPNO ENAME JOB ... DEPTNO - PowerPoint PPT Presentation

Citation preview

Page 1: Restricting and Sorting Data

Restricting and Sorting DataRestricting and Sorting Data

Page 2: Restricting and Sorting Data

Limiting Rows Using a SelectionLimiting Rows Using a Selection

"…retrieve all"…retrieve allemployeesemployeesin department 10"in department 10"

EMPEMP

EMPNO ENAME JOB ... DEPTNO

7839 KING PRESIDENT 10 7698 BLAKE MANAGER 30 7782 CLARK MANAGER 10 7566 JONES MANAGER 20 ...

EMPEMP

EMPNO ENAME JOB ... DEPTNO

7839 KING PRESIDENT 10 7782 CLARK MANAGER 10 7934 MILLER CLERK 10

Page 3: Restricting and Sorting Data
Page 4: Restricting and Sorting Data

Limiting Rows SelectedLimiting Rows Selected

Restrict the rows returned by using the WHERE clause.

The WHERE clause follows the FROM clause.

Restrict the rows returned by using the WHERE clause.

The WHERE clause follows the FROM clause.

SELECT [DISTINCT] {*| column [alias], ...}FROM table[WHERE condition(s)];

Page 5: Restricting and Sorting Data

Limiting Rows Selected

You can restrict the rows returned from the query by using the WHERE clause. A WHERE clause contains a condition that must be met, and it directly follows the FROM clause.

WHERE restricts the query to rows that meet a condition

condition is composed of column names, expressions, constants, and a comparison operator

The WHERE clause can compare values in columns, literal values, arithmetic expressions, or functions. The WHERE clause consists of three elements:

•Column name

•Comparison operator

•Column name, constant, or list of values

Page 6: Restricting and Sorting Data

Using the WHERE ClauseUsing the WHERE Clause

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

ENAME JOB DEPTNO---------- --------- ---------JAMES CLERK 30SMITH CLERK 20ADAMS CLERK 20MILLER CLERK 10

Page 7: Restricting and Sorting Data
Page 8: Restricting and Sorting Data
Page 9: Restricting and Sorting Data

Character Strings and DatesCharacter Strings and Dates

Character strings and date values are enclosed in single quotation marks.

Character values are case sensitive and date values are format sensitive.

The default date format is DD-MON-YY.

Character strings and date values are enclosed in single quotation marks.

Character values are 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';

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

Page 10: Restricting and Sorting Data

All character searches are case sensitive. In the following example, no rows are returned because the EMP table stores all the data in uppercase:

SQL> SELECT ename, empno, job, deptno 2 FROM emp 3 WHERE job='clerk';

Page 11: Restricting and Sorting Data

Comparison OperatorsComparison Operators

Operator

=

>

>=

<

<=

<>

Meaning

Equal to

Greater than

Greater than or equal to

Less than

Less than or equal to

Not equal to

Page 12: Restricting and Sorting Data

Using the Comparison OperatorsUsing the Comparison Operators

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

ENAME SAL COMM---------- --------- ---------MARTIN 1250 1400

Page 13: Restricting and Sorting Data

1) Using the where clause, write sql query to display the name of employee, job that takes: - salary more than 1500.- salary less than 1500.

2) Display the employees whose there Hiredate after 22/02/81. Specify the command to display the columns empno, ename, sal, hiredate.

Examples:

Page 14: Restricting and Sorting Data

Answers

Page 15: Restricting and Sorting Data
Page 16: Restricting and Sorting Data
Page 17: Restricting and Sorting Data

Other Comparison OperatorsOther Comparison OperatorsOther Comparison OperatorsOther Comparison Operators

Operator

BETWEEN

...AND...

IN(list)

LIKE

IS NULL

Meaning

Between two values (inclusive)

Match any of a list of values

Match a character pattern

Is a null value

Page 18: Restricting and Sorting Data
Page 19: Restricting and Sorting Data

Using the BETWEEN OperatorUsing the BETWEEN Operator

ENAME SAL---------- ---------MARTIN 1250TURNER 1500WARD 1250ADAMS 1100MILLER 1300

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

Lowerlimit

Higherlimit

Use the BETWEEN operator to display rows based on a range of values.Use the BETWEEN operator to display rows based on a range of values.

Page 20: Restricting and Sorting Data
Page 21: Restricting and Sorting Data

Using the IN OperatorUsing the IN Operator

Use the IN operator to test for values in a list.Use 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 MGR--------- ---------- --------- --------- 7902 FORD 3000 7566 7369 SMITH 800 7902 7788 SCOTT 3000 7566 7876 ADAMS 1100 7788

Page 22: Restricting and Sorting Data

The IN operator can be used with any datatype. The following example returns a row from the EMP table for any employee whose name is included in the list of names in the WHERE clause:

SQL> SELECT empno, ename, mgr, deptno

2 FROM emp

3 WHERE ename IN ('FORD' , 'ALLEN');

If characters or dates are used in the list, they must be enclosed in single quotation marks ('').

Page 23: Restricting and Sorting Data
Page 24: Restricting and Sorting Data
Page 25: Restricting and Sorting Data
Page 26: Restricting and Sorting Data
Page 27: Restricting and Sorting Data
Page 28: Restricting and Sorting Data

Using the LIKE OperatorUsing 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.

– _ denotes one character.

• 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.

– _ denotes one character.

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

The SELECT statement above returns the employee name from the EMP table for any employee whose name begins with an “S.” Note the uppercase “S.” Names beginning with an “s” will not be returned.

Page 29: Restricting and Sorting Data

The LIKE operator can be used as a shortcut for some BETWEEN comparisons. The following example displays names and hire dates of all employees who joined between January 1981 and December 1981:

SQL> SELECT ename, hiredate

2 FROM emp

3 WHERE hiredate LIKE '%81';

Page 30: Restricting and Sorting Data

Using the LIKE OperatorUsing the LIKE Operator

You can combine pattern-matching characters.

You can use the ESCAPE identifier to search for "%" or "_".

You can combine pattern-matching characters.

You can use the ESCAPE identifier to search for "%" or "_".

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

ENAME---------- MARTINJAMES WARD

Page 31: Restricting and Sorting Data
Page 32: Restricting and Sorting Data
Page 33: Restricting and Sorting Data

Using the IS NULL OperatorUsing the IS NULL Operator

Test for null values with the IS NULL operator.Test for null values with the IS NULL operator.

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

ENAME MGR---------- ---------KING

Page 34: Restricting and Sorting Data