1.1. Lexical Conventions
SQL statements are composed of commands, variables, and operators, which are described in detail in this and subsequent chapters. A SQL statement is constructed from:
Characters A through Z (or the equivalent from your database character set)
Numbers 0 through 9
Spaces
The following special characters: + - * = ? ! @ ( ) _ . , < > | $ #
|
A SQL statement can contain one or more of the following items anywhere a single space can occur:
Tab
Carriage return
Multiple spaces
Comments
|
The following two SELECT statements, for example, are evaluated in exactly the same way by Oracle and both return the same result set:
SELECT ename,empno,sal FROM scott.emp WHERE sal>500;
SELECT ename,
empno, sal
FROM scott.emp
WHERE sal > 500;
SQL is generally not case-sensitive, so case is not significant except in literals, which are enclosed in quotes.
|
