September 2004
Intermediate to advanced
448 pages
8h 49m
English
' (single quote)The single quote character is used extensively in Oracle SQL syntax to delimit strings.
" (double quote)Double quotes are occasionally used in SQL*Plus. They are necessary in column names and headers that contain spaces. For example, the only way to name a column in a CREATE TABLE command as "My Column" is by enclosing it in double quotes.
!=Anti equivalence or inequality implies two expressions being compared for inequality or not being equal to each other (!=, <>, or ^=).
=Equality (=) is when two expressions are compared for being equal to each other.
&, &&, DEFINE, and UNDEFINEDEFINE and UNDEFINE are used to define (create) and undefine (remove) script variables, respectively. & and && ampersand characters are used to ...