September 2004
Intermediate to advanced
448 pages
8h 49m
English
Terms You Need to Understand
✓ The SELECT statement
✓ The FROM clause
✓ Query
✓ Column and column list
✓ Schema
✓ Expression
✓ Alias
✓ DISTINCT versus ALL
✓ NULL
Concepts You Need to Master
✓ What a query is
✓ What an expression is
✓ The difference between a column and an expression
✓ Simple queries
✓ The DUAL table
✓ The effect of NULL values on the result of expressions
✓ The DISTINCT clause
✓ Repeating groups
This chapter jumps straight into the basic syntax of data retrieval using the Oracle SQL SELECT statement, additionally briefly introducing some specifics.
A query is a statement interrogating the database and returning information. Most often tables are interrogated and rows from those tables are returned. ...