Top Banner
1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements
48

1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

Dec 24, 2015

Download

Documents

Anabel Morris
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1Copyright © Oracle Corporation, 2001. All rights reserved.

Writing Basic SQL SELECT Statements

Page 2: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-2 Copyright © Oracle Corporation, 2001. All rights reserved.

Capabilities of SQL SELECT Statements

SelectionProjection

Table 1 Table 2

Table 1Table 1

Join

Page 3: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-3 Copyright © Oracle Corporation, 2001. All rights reserved.

Basic SELECT Statement

SELECT *|{[DISTINCT] column|expression [alias],...}FROM table;

SELECT *|{[DISTINCT] column|expression [alias],...}FROM table;

• SELECT identifies what columns

• FROM identifies which table

Page 4: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-4 Copyright © Oracle Corporation, 2001. All rights reserved.

SELECT *FROM departments;

Selecting All Columns

Page 5: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-5 Copyright © Oracle Corporation, 2001. All rights reserved.

Selecting Specific Columns

SELECT department_id, location_idFROM departments;

Page 6: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-6 Copyright © Oracle Corporation, 2001. All rights reserved.

Writing SQL Statements

• SQL statements are not case sensitive.

• SQL statements can be on one or more lines.

• Keywords cannot be abbreviated or splitacross lines.

• Indents are used to enhance readability.

Page 7: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-7 Copyright © Oracle Corporation, 2001. All rights reserved.

Column Heading Defaults

• iSQL*Plus:

– Default heading justification: Center

– Default heading display: Uppercase

• SQL*Plus:

– Character and Date column headings are left- justified

– Number column headings are right-justified

– Default heading display: Uppercase

Page 8: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-8 Copyright © Oracle Corporation, 2001. All rights reserved.

Arithmetic Expressions

Create expressions with number and date data by using arithmetic operators.

Operator

+

-

*

/

Description

Add

Subtract

Multiply

Divide

Page 9: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-9 Copyright © Oracle Corporation, 2001. All rights reserved.

Using Arithmetic Operators

SELECT last_name, salary, salary + 300FROM employees;

Page 10: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-10 Copyright © Oracle Corporation, 2001. All rights reserved.

Operator Precedence

• Multiplication and division take priority over addition and subtraction.

• Operators of the same priority are evaluated from left to right.

• Parentheses are used to force prioritized evaluation and to clarify statements.

**** //// ++++ ____

Page 11: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-11 Copyright © Oracle Corporation, 2001. All rights reserved.

Operator Precedence

SELECT last_name, salary, 12*salary+100FROM employees;

Page 12: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-12 Copyright © Oracle Corporation, 2001. All rights reserved.

Using Parentheses

SELECT last_name, salary, 12*(salary+100)FROM employees;

Page 13: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-13 Copyright © Oracle Corporation, 2001. All rights reserved.

Defining a Null Value

• A null is a value that is unavailable, unassigned, unknown, or inapplicable.

• A null is not the same as zero or a blank space.

SELECT last_name, job_id, salary, commission_pctFROM employees;

Page 14: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-14 Copyright © Oracle Corporation, 2001. All rights reserved.

SELECT last_name, 12*salary*commission_pctFROM employees;

Null Values in Arithmetic Expressions

Arithmetic expressions containing a null value evaluate to null.

Page 15: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-15 Copyright © Oracle Corporation, 2001. All rights reserved.

Defining a Column Alias

A column alias:

• Renames a column heading

• Is useful with calculations

• Immediately follows the column name - there can also be the optional AS keyword between the column name and alias

• Requires double quotation marks if it contains spaces or special characters or is case sensitive

Page 16: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-16 Copyright © Oracle Corporation, 2001. All rights reserved.

Using Column Aliases

SELECT last_name "Name", salary*12 "Annual Salary"FROM employees;

SELECT last_name AS name, commission_pct commFROM employees;

Page 17: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-17 Copyright © Oracle Corporation, 2001. All rights reserved.

Concatenation Operator

A concatenation operator:

• Concatenates columns or character strings to other columns

• Is represented by two vertical bars (||)

• Creates a resultant column that is a character expression

Page 18: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-18 Copyright © Oracle Corporation, 2001. All rights reserved.

Using the Concatenation Operator

SELECT last_name||job_id AS "Employees"FROM employees;

Page 19: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-19 Copyright © Oracle Corporation, 2001. All rights reserved.

Literal Character Strings

• A literal is a character, a number, or a date included in the SELECT list.

• Date and character literal values must be enclosed within single quotation marks.

• Each character string is output once for eachrow returned.

Page 20: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-20 Copyright © Oracle Corporation, 2001. All rights reserved.

Using Literal Character Strings

SELECT last_name ||' is a '||job_id AS "Employee Details"FROM employees;

Page 21: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-21 Copyright © Oracle Corporation, 2001. All rights reserved.

Duplicate Rows

The default display of queries is all rows, including duplicate rows.

SELECT department_idFROM employees;

SELECT department_idFROM employees;

Page 22: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-22 Copyright © Oracle Corporation, 2001. All rights reserved.

Eliminating Duplicate Rows

Eliminate duplicate rows by using the DISTINCT keyword in the SELECT clause.

SELECT DISTINCT department_idFROM employees;

Page 23: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-23 Copyright © Oracle Corporation, 2001. All rights reserved.

Displaying Table Structure

Use the iSQL*Plus DESCRIBE command to display the structure of a table.

DESC[RIBE] tablenameDESC[RIBE] tablename

Page 24: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-24 Copyright © Oracle Corporation, 2001. All rights reserved.

Displaying Table Structure

DESCRIBE employeesDESCRIBE employees

Page 25: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1Copyright © Oracle Corporation, 2001. All rights reserved.

Restricting and Sorting Data

Page 26: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-26 Copyright © Oracle Corporation, 2001. All rights reserved.

Limiting Rows Using a Selection

“retrieve allemployeesin department 90”

EMPLOYEES

Page 27: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-27 Copyright © Oracle Corporation, 2001. All rights reserved.

Limiting the Rows Selected

• Restrict the rows returned by using the WHERE clause.

• The WHERE clause follows the FROM clause.

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

Page 28: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-28 Copyright © Oracle Corporation, 2001. All rights reserved.

Using the WHERE Clause

SELECT employee_id, last_name, job_id, department_idFROM employeesWHERE department_id = 90 ;

Page 29: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-29 Copyright © Oracle Corporation, 2001. All rights reserved.

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

SELECT last_name, job_id, department_idFROM employeesWHERE last_name = 'Whalen';

Page 30: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-30 Copyright © Oracle Corporation, 2001. All rights reserved.

Comparison Conditions

Operator

=

>

>=

<

<=

<>

Meaning

Equal to

Greater than

Greater than or equal to

Less than

Less than or equal to

Not equal to

Page 31: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-31 Copyright © Oracle Corporation, 2001. All rights reserved.

SELECT last_name, salaryFROM employeesWHERE salary <= 3000;

Using Comparison Conditions

Page 32: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-32 Copyright © Oracle Corporation, 2001. All rights reserved.

Other Comparison Conditions

Operator

BETWEEN

...AND...

IN(set)

LIKE

IS NULL

Meaning

Between two values (inclusive),

Match any of a list of values

Match a character pattern

Is a null value

Page 33: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-33 Copyright © Oracle Corporation, 2001. All rights reserved.

Using the BETWEEN Condition

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

SELECT last_name, salaryFROM employeesWHERE salary BETWEEN 2500 AND 3500;

Lower limit Upper limit

Page 34: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-34 Copyright © Oracle Corporation, 2001. All rights reserved.

SELECT employee_id, last_name, salary, manager_idFROM employeesWHERE manager_id IN (100, 101, 201);

Using the IN Condition

Use the IN membership condition to test for values in a list.

Page 35: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-35 Copyright © Oracle Corporation, 2001. All rights reserved.

Using the LIKE Condition

• Use the LIKE condition 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.

SELECT first_nameFROM employeesWHERE first_name LIKE 'S%';

Page 36: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-36 Copyright © Oracle Corporation, 2001. All rights reserved.

• You can combine pattern-matching characters.

• You can use the ESCAPE identifier to search for the actual % and _ symbols.

Using the LIKE Condition

SELECT last_nameFROM employeesWHERE last_name LIKE '_o%';

Page 37: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-37 Copyright © Oracle Corporation, 2001. All rights reserved.

Using the NULL Conditions

Test for nulls with the IS NULL operator.

SELECT last_name, manager_idFROM employeesWHERE manager_id IS NULL;

Page 38: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-38 Copyright © Oracle Corporation, 2001. All rights reserved.

Logical Conditions

Operator

AND

OR

NOT

Meaning

Returns TRUE if both component

conditions are true

Returns TRUE if either component

condition is true

Returns TRUE if the following condition is false

Page 39: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-39 Copyright © Oracle Corporation, 2001. All rights reserved.

Using the AND Operator

AND requires both conditions to be true.

SELECT employee_id, last_name, job_id, salaryFROM employeesWHERE salary >=10000AND job_id LIKE '%MAN%';

Page 40: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-40 Copyright © Oracle Corporation, 2001. All rights reserved.

Using the OR Operator

OR requires either condition to be true.OR requires either condition to be true.

SELECT employee_id, last_name, job_id, salaryFROM employeesWHERE salary >= 10000OR job_id LIKE '%MAN%';

Page 41: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-41 Copyright © Oracle Corporation, 2001. All rights reserved.

SELECT last_name, job_idFROM employeesWHERE job_id NOT IN ('IT_PROG', 'ST_CLERK', 'SA_REP');

Using the NOT Operator

Page 42: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-42 Copyright © Oracle Corporation, 2001. All rights reserved.

Rules of Precedence

Override rules of precedence by using parentheses.

Order Evaluated Operator

1 Arithmetic operators

2 Concatenation operator

3 Comparison conditions

4 IS [NOT] NULL, LIKE, [NOT] IN5 [NOT] BETWEEN6 NOT logical condition

7 AND logical condition

8 OR logical condition

Page 43: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-43 Copyright © Oracle Corporation, 2001. All rights reserved.

SELECT last_name, job_id, salaryFROM employeesWHERE job_id = 'SA_REP'OR job_id = 'AD_PRES'AND salary > 15000;

Rules of Precedence

Page 44: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-44 Copyright © Oracle Corporation, 2001. All rights reserved.

SELECT last_name, job_id, salaryFROM employeesWHERE (job_id = 'SA_REP'OR job_id = 'AD_PRES')AND salary > 15000;

Rules of Precedence

Use parentheses to force priority.Use parentheses to force priority.

Page 45: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-45 Copyright © Oracle Corporation, 2001. All rights reserved.

SELECT last_name, job_id, department_id, hire_dateFROM employeesORDER BY hire_date ;

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.

Page 46: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-46 Copyright © Oracle Corporation, 2001. All rights reserved.

Sorting in Descending Order

SELECT last_name, job_id, department_id, hire_dateFROM employeesORDER BY hire_date DESC ;

Page 47: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-47 Copyright © Oracle Corporation, 2001. All rights reserved.

Sorting by Column Alias

SELECT employee_id, last_name, salary*12 annsalFROM employeesORDER BY annsal;

Page 48: 1 Copyright © Oracle Corporation, 2001. All rights reserved. Writing Basic SQL SELECT Statements.

1-48 Copyright © Oracle Corporation, 2001. All rights reserved.

Summary

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

In this lesson, you should have learned how to:

• Use the WHERE clause to restrict rows of output

– Use the comparison conditions

– Use the BETWEEN, IN, LIKE, and NULL conditions

– Apply the logical AND, OR, and NOT operators

• Use the ORDER BY clause to sort rows of output