Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
SQL/sql-2003-2.bnf
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
6779 lines (4934 sloc)
195 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BNF Grammar for ISO/IEC 9075-2:2003 - Database Language SQL (SQL-2003) SQL/Foundation | |
===================================================================================== | |
@(#)$Id: sql-2003-2.bnf,v 1.23 2017/11/14 06:53:22 jleffler Exp $ | |
--p | |
Information taken from the Final Committee Draft (FCD) of ISO/IEC 9075-2:2003. | |
However, the page numbers and some section titles (9.14 through 9.23, | |
for example) are from the final standard. | |
This means there could be other as yet undiagnosed differences between | |
the final standard and the notation in this document; you were warned! | |
--/p | |
--p | |
The plain text version of this grammar is | |
--## <a href='sql-2003-2.bnf'> sql-2003-2.bnf </a>. | |
--/p | |
--hr | |
--h2 Key SQL Statements and Fragments | |
--/h2 | |
--bl | |
--li ALTER DOMAIN <alter domain statement> | |
--li ALTER TABLE <alter table statement> | |
--li CLOSE cursor <close statement> | |
--li Column definition <column definition> | |
--li COMMIT WORK <commit statement> | |
--li CONNECT <connect statement> | |
--li CREATE ASSERTION <assertion definition> | |
--li CREATE CHARACTER SET <character set definition> | |
--li CREATE COLLATION <collation definition> | |
--li CREATE DOMAIN <domain definition> | |
--li CREATE FUNCTION <schema function> | |
--li CREATE PROCEDURE <schema procedure> | |
--li CREATE SCHEMA <schema definition> | |
--li CREATE TABLE <table definition> | |
--li CREATE TRANSLATION <translation definition> | |
--li CREATE TRIGGER <trigger definition> | |
--li CREATE VIEW <view definition> | |
--li Data type <data type> | |
--li DEALLOCATE PREPARE <deallocate prepared statement> | |
--li DECLARE cursor <declare cursor> <dynamic declare cursor> | |
--li DECLARE LOCAL TEMPORARY TABLE <temporary table declaration> | |
--li DELETE <delete statement: positioned> <delete statement: searched> <dynamic delete statement: positioned> | |
--li DESCRIBE <describe statement> | |
--li DESCRIPTOR statements <system descriptor statement> | |
--li DISCONNECT <disconnect statement> | |
--li EXECUTE <execute statement> | |
--li EXECUTE IMMEDIATE <execute immediate statement> | |
--li FETCH cursor <fetch statement> | |
--li FROM clause <from clause> | |
--li GET DIAGNOSTICS <get diagnostics statement> | |
--li GRANT <grant statement> | |
--li GROUP BY clause <group by clause> | |
--li HAVING clause <having clause> | |
--li INSERT <insert statement> | |
--li Literals <literal> | |
--li Keywords <key word> | |
--li MERGE <merge statement> | |
--li OPEN cursor <open statement> | |
--li ORDER BY clause <order by clause> | |
--li PREPARE <prepare statement> | |
--li REVOKE <revoke statement> | |
--li ROLLBACK WORK <rollback statement> | |
--li SAVEPOINT <savepoint statement> | |
--li Search condition <search condition> <regular expression> | |
--li SELECT <query specification> | |
--li SET CATALOG <set catalog statement> | |
--li SET CONNECTION <set connection statement> | |
--li SET CONSTRAINTS <set constraints mode statement> | |
--li SET NAMES <set names statement> | |
--li SET SCHEMA <set schema statement> | |
--li SET SESSION AUTHORIZATION <set session user identifier statement> | |
--li SET TIME ZONE <set local time zone statement> | |
--li SET TRANSACTION <set transaction statement> | |
--li SQL Client MODULE <SQL-client module definition> | |
--li UPDATE <update statement: positioned> <update statement: searched> <dynamic update statement: positioned> | |
--li Value expression <value expression> | |
--li WHERE clause <where clause> | |
--/bl | |
--hr | |
--h2 5 Lexical Elements | |
--/h2 | |
--p | |
Basic definitions of characters used, tokens, symbols, etc. | |
Most of this section would normally be handled within the lexical | |
analyzer rather than in the grammar proper. | |
Further, the original document does not quote the various single | |
characters, which makes it hard to process automatically. | |
--/p | |
--h3 5.1 <SQL terminal character> (p151) | |
--/h3 | |
<SQL terminal character> ::= <SQL language character> | |
<SQL language character> ::= <simple Latin letter> | <digit> | <SQL special character> | |
<simple Latin letter> ::= <simple Latin upper case letter> | <simple Latin lower case letter> | |
<simple Latin upper case letter> ::= | |
A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | |
<simple Latin lower case letter> ::= | |
a | b | c | d | e | f | g | h | i | j | k | l | m | n | o | p | q | r | s | t | u | v | w | x | y | z | |
<digit> ::= 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | |
<SQL special character> ::= | |
<space> | |
| <double quote> | |
| <percent> | |
| <ampersand> | |
| <quote> | |
| <left paren> | |
| <right paren> | |
| <asterisk> | |
| <plus sign> | |
| <comma> | |
| <minus sign> | |
| <period> | |
| <solidus> | |
| <colon> | |
| <semicolon> | |
| <less than operator> | |
| <equals operator> | |
| <greater than operator> | |
| <question mark> | |
| <left bracket> | |
| <right bracket> | |
| <circumflex> | |
| <underscore> | |
| <vertical bar> | |
| <left brace> | |
| <right brace> | |
<space> ::= !! See the Syntax Rules. | |
<double quote> ::= " | |
<percent> ::= % | |
<ampersand> ::= & | |
<quote> ::= ' | |
<left paren> ::= ( | |
<right paren> ::= ) | |
<asterisk> ::= * | |
<plus sign> ::= + | |
<comma> ::= , | |
<minus sign> ::= - | |
<period> ::= . | |
<solidus> ::= / | |
<colon> ::= : | |
<semicolon> ::= ; | |
<less than operator> ::= < | |
<equals operator> ::= = | |
<greater than operator> ::= > | |
<question mark> ::= ? | |
--p | |
--i | |
The trigraphs are new in SQL-2003. | |
--/i | |
--/p | |
<left bracket or trigraph> ::= <left bracket> | <left bracket trigraph> | |
<right bracket or trigraph> ::= <right bracket> | <right bracket trigraph> | |
<left bracket> ::= [ | |
<left bracket trigraph> ::= ??( | |
<right bracket> ::= ] | |
<right bracket trigraph> ::= ??) | |
<circumflex> ::= ^ | |
<underscore> ::= _ | |
<vertical bar> ::= | | |
<left brace> ::= { | |
<right brace> ::= } | |
--hr | |
--h3 5.2 <token> and <separator> (p134) | |
--/h3 | |
--p | |
Specifying lexical units (tokens and separators) that participate in SQL language. | |
--/p | |
<token> ::= <nondelimiter token> | <delimiter token> | |
<nondelimiter token> ::= | |
<regular identifier> | |
| <key word> | |
| <unsigned numeric literal> | |
| <national character string literal> | |
| <bit string literal> | |
| <hex string literal> | |
| <large object length token> | |
| <multiplier> | |
<regular identifier> ::= <identifier body> | |
<identifier body> ::= <identifier start> [ <identifier part>... ] | |
<identifier part> ::= <identifier start> | <identifier extend> | |
--p | |
--i | |
--small | |
The previous version of the SQL standard defined an identifier start as | |
either an <initial alphabetic character> or an <ideographic character>. | |
Neither of the defining terms is defined in SQL 2003 (and the SQL 99 | |
definitions of those defininng terms referred to the syntax rules), but | |
the result of the SQL 2003 syntax rules will be similar to SQL 99 ones | |
except with Unicode support added. | |
--/small | |
--/i | |
--/p | |
--@@ <identifier start> ::= <initial alphabetic character> | <ideographic character> | |
<identifier start> ::= !! See the Syntax Rules. | |
<identifier extend> ::= !! See the Syntax Rules. | |
<large object length token> ::= <digit>... <multiplier> | |
<multiplier> ::= K | M | G | |
<delimited identifier> ::= <double quote> <delimited identifier body> <double quote> | |
<delimited identifier body> ::= <delimited identifier part>... | |
<delimited identifier part> ::= <nondoublequote character> | <doublequote symbol> | |
--p | |
--i | |
--small | |
The productions for <Unicode delimited identifier> and so on are new in SQL-2003. | |
--/small | |
--/i | |
--/p | |
<Unicode delimited identifier> ::= | |
U<ampersand><double quote> <Unicode delimiter body> <double quote> | |
<Unicode escape specifier> | |
<Unicode escape specifier> ::= [ UESCAPE <quote> <Unicode escape character> <quote> ] | |
<Unicode delimiter body> ::= <Unicode identifier part>... | |
<Unicode identifier part> ::= <delimited identifier part> | <Unicode escape value> | |
<Unicode escape value> ::= | |
<Unicode 4 digit escape value> | |
| <Unicode 6 digit escape value> | |
| <Unicode character escape value> | |
--p | |
--i | |
--small | |
Syntax rule 20: <Unicode 4 digit escape value>'<Unicode escape | |
character>+xyzw' is equivalent to the Unicode code point specified by | |
U+xyzw. | |
--/small | |
--/i | |
--/p | |
<Unicode 4 digit escape value> ::= <Unicode escape character><hexit><hexit><hexit><hexit> | |
--p | |
--i | |
--small | |
Syntax rule 21: <Unicode 6 digit escape value>'<Unicode escape | |
character>+xyzwrs' is equivalent to the Unicode code point specified by | |
U+xyzwrs. | |
--/small | |
--/i | |
--/p | |
--p | |
--i | |
--small | |
NOTE 64: The 6-hexit notation is derived by taking the UCS-4 notation | |
defined by ISO/IEC 10646-1 and removing the leading two hexits, whose | |
values are always 0 (zero). | |
--/small | |
--/i | |
--/p | |
<Unicode 6 digit escape value> ::= | |
<Unicode escape character><plus sign><hexit><hexit><hexit><hexit><hexit><hexit> | |
--p | |
--i | |
--small | |
Syntax rule 22: <Unicode character escape value> is equivalent to a | |
single instance of <Unicode escape character>. | |
--/small | |
--/i | |
--/p | |
<Unicode character escape value> ::= <Unicode escape character><Unicode escape character> | |
--p | |
--i | |
--small | |
Syntax rule 15: <Unicode escape character> shall be a single character | |
from the source language character set other than a <hexit>, <plus | |
sign>, or <white space>. | |
--/small | |
--/i | |
--/p | |
--p | |
--i | |
--small | |
Syntax rule 16: If the source language character set contains <reverse | |
solidus>, then let DEC be <reverse solidus>; otherwise, let DEC be an | |
implementation-defined character from the source language character set | |
that is not a <hexit>, <plus sign>, <double quote>, or <white space>. | |
--/small | |
--/i | |
--/p | |
--p | |
--i | |
--small | |
Syntax rule 17: If a <Unicode escape specifier> does not contain | |
<Unicode escape character>, then "UESCAPE <quote>DEC<quote>" is | |
implicit. | |
--/small | |
--/i | |
--/p | |
--p | |
--i | |
--small | |
Syntax rule 18: In a <Unicode escape value> there shall be no | |
<separator> between the <Unicode escape character> and the first | |
<hexit>, nor between any of the <hexit>s. | |
--/small | |
--/i | |
--/p | |
<Unicode escape character> ::= !! See the Syntax Rules (15-18 above). | |
--p | |
--i | |
--small | |
Syntax rule 6: A <nondoublequote character> is any character of | |
the source language character set other than a <double quote>. | |
--/small | |
--/i | |
--/p | |
<nondoublequote character> ::= !! See the Syntax Rules. | |
--p | |
--i | |
--small | |
The rule for <doublequote symbol> in the standard uses two adjacent | |
literal double quotes rather than referencing <double quote>; the | |
reasons are not clear. | |
It is annotated '!! two consecutive double quote characters'. | |
--/small | |
--/i | |
--/p | |
<doublequote symbol> ::= <double quote> <double quote> | |
<delimiter token> ::= | |
<character string literal> | |
| <date string> | |
| <time string> | |
| <timestamp string> | |
| <interval string> | |
| <delimited identifier> | |
| <Unicode delimited identifier> | |
| <SQL special character> | |
| <not equals operator> | |
| <greater than or equals operator> | |
| <less than or equals operator> | |
| <concatenation operator> | |
| <right arrow> | |
| <left bracket trigraph> | |
| <right bracket trigraph> | |
| <double colon> | |
| <double period> | |
--p | |
--i | |
--small | |
The rules for <not equals operator> etc in the standard uses | |
two adjacent literal characters rather than referencing | |
<less than> and <greater than>; the reasons are not clear. | |
Note that two characters must be adjacent with no | |
intervening space, not a pair of characters separated by | |
arbitrary white space. | |
--/small | |
--/i | |
--/p | |
<not equals operator> ::= <less than operator> <greater than operator> | |
<greater than or equals operator> ::= <greater than operator> <equals operator> | |
<less than or equals operator> ::= <less than operator> <equals operator> | |
<concatenation operator> ::= <vertical bar> <vertical bar> | |
<right arrow> ::= <minus sign> <greater than operator> | |
<double colon> ::= <colon> <colon> | |
<double period> ::= <period> <period> | |
<separator> ::= { <comment> | <white space> }... | |
<comment> ::= <simple comment> | <bracketed comment> | |
<simple comment> ::= <simple comment introducer> [ <comment character>... ] <newline> | |
<simple comment introducer> ::= <minus sign><minus sign> [ <minus sign>... ] | |
--p | |
--small | |
--i | |
The <bracketed comment> rule included '!! See the Syntax Rules'. | |
This probably says something about the <slash> <asterisk> and <asterisk> | |
<slash> needing to be adjacent characters rather than adjacent tokens. | |
--/i | |
--/small | |
--/p | |
<bracketed comment> ::= | |
<bracketed comment introducer> <bracketed comment contents> <bracketed comment terminator> | |
<bracketed comment introducer> ::= <slash> <asterisk> | |
<bracketed comment terminator> ::= <asterisk> <slash> | |
<bracketed comment contents> ::= [ { <comment character> | <separator> }... ] | |
<comment character> ::= <nonquote character> | <quote> | |
<newline> ::= !! See the Syntax Rules. | |
--p | |
--small | |
--i | |
There was a surprising amount of movement of keywords between the | |
reserved and non-reserved word classes between SQL-99 and SQL-2003-2 FCD | |
and again between SQL 2003-2 FCD and SQL 2003-2 IS. | |
There is also room to think that much of the host language | |
support moved out of Part 2 (SQL/Foundation). | |
--/i | |
--/small | |
--/p | |
<key word> ::= <reserved word> | <non-reserved word> | |
<non-reserved word> ::= | |
A | |
| ABS | |
| ABSOLUTE | |
| ACTION | |
| ADA | |
| ADMIN | |
| AFTER | |
| ALWAYS | |
| ASC | |
| ASSERTION | |
| ASSIGNMENT | |
| ATTRIBUTE | |
| ATTRIBUTES | |
| AVG | |
| BEFORE | |
| BERNOULLI | |
| BREADTH | |
| C | |
| CARDINALITY | |
| CASCADE | |
| CATALOG | |
| CATALOG_NAME | |
| CEIL | |
| CEILING | |
| CHAIN | |
| CHARACTERISTICS | |
| CHARACTERS | |
| CHARACTER_LENGTH | |
| CHARACTER_SET_CATALOG | |
| CHARACTER_SET_NAME | |
| CHARACTER_SET_SCHEMA | |
| CHAR_LENGTH | |
| CHECKED | |
| CLASS_ORIGIN | |
| COALESCE | |
| COBOL | |
| CODE_UNITS | |
| COLLATION | |
| COLLATION_CATALOG | |
| COLLATION_NAME | |
| COLLATION_SCHEMA | |
| COLLECT | |
| COLUMN_NAME | |
| COMMAND_FUNCTION | |
| COMMAND_FUNCTION_CODE | |
| COMMITTED | |
| CONDITION | |
| CONDITION_NUMBER | |
| CONNECTION_NAME | |
| CONSTRAINTS | |
| CONSTRAINT_CATALOG | |
| CONSTRAINT_NAME | |
| CONSTRAINT_SCHEMA | |
| CONSTRUCTORS | |
| CONTAINS | |
| CONVERT | |
| CORR | |
| COUNT | |
| COVAR_POP | |
| COVAR_SAMP | |
| CUME_DIST | |
| CURRENT_COLLATION | |
| CURSOR_NAME | |
| DATA | |
| DATETIME_INTERVAL_CODE | |
| DATETIME_INTERVAL_PRECISION | |
| DEFAULTS | |
| DEFERRABLE | |
| DEFERRED | |
| DEFINED | |
| DEFINER | |
| DEGREE | |
| DENSE_RANK | |
| DEPTH | |
| DERIVED | |
| DESC | |
| DESCRIPTOR | |
| DIAGNOSTICS | |
| DISPATCH | |
| DOMAIN | |
| DYNAMIC_FUNCTION | |
| DYNAMIC_FUNCTION_CODE | |
| EQUALS | |
| EVERY | |
| EXCEPTION | |
| EXCLUDE | |
| EXCLUDING | |
| EXP | |
| EXTRACT | |
| FINAL | |
| FIRST | |
| FLOOR | |
| FOLLOWING | |
| FORTRAN | |
| FOUND | |
| FUSION | |
| G | |
| GENERAL | |
| GO | |
| GOTO | |
| GRANTED | |
| HIERARCHY | |
| IMPLEMENTATION | |
| INCLUDING | |
| INCREMENT | |
| INITIALLY | |
| INSTANCE | |
| INSTANTIABLE | |
| INTERSECTION | |
| INVOKER | |
| ISOLATION | |
| K | |
| KEY | |
| KEY_MEMBER | |
| KEY_TYPE | |
| LAST | |
| LENGTH | |
| LEVEL | |
| LN | |
| LOCATOR | |
| LOWER | |
| M | |
| MAP | |
| MATCHED | |
| MAX | |
| MAXVALUE | |
| MESSAGE_LENGTH | |
| MESSAGE_OCTET_LENGTH | |
| MESSAGE_TEXT | |
| MIN | |
| MINVALUE | |
| MOD | |
| MORE | |
| MUMPS | |
| NAME | |
| NAMES | |
| NESTING | |
| NEXT | |
| NORMALIZE | |
| NORMALIZED | |
| NULLABLE | |
| NULLIF | |
| NULLS | |
| NUMBER | |
| OBJECT | |
| OCTETS | |
| OCTET_LENGTH | |
| OPTION | |
| OPTIONS | |
| ORDERING | |
| ORDINALITY | |
| OTHERS | |
| OVERLAY | |
| OVERRIDING | |
| PAD | |
| PARAMETER_MODE | |
| PARAMETER_NAME | |
| PARAMETER_ORDINAL_POSITION | |
| PARAMETER_SPECIFIC_CATALOG | |
| PARAMETER_SPECIFIC_NAME | |
| PARAMETER_SPECIFIC_SCHEMA | |
| PARTIAL | |
| PASCAL | |
| PATH | |
| PERCENTILE_CONT | |
| PERCENTILE_DISC | |
| PERCENT_RANK | |
| PLACING | |
| PLI | |
| POSITION | |
| POWER | |
| PRECEDING | |
| PRESERVE | |
| PRIOR | |
| PRIVILEGES | |
| PUBLIC | |
| RANK | |
| READ | |
| RELATIVE | |
| REPEATABLE | |
| RESTART | |
| RETURNED_CARDINALITY | |
| RETURNED_LENGTH | |
| RETURNED_OCTET_LENGTH | |
| RETURNED_SQLSTATE | |
| ROLE | |
| ROUTINE | |
| ROUTINE_CATALOG | |
| ROUTINE_NAME | |
| ROUTINE_SCHEMA | |
| ROW_COUNT | |
| ROW_NUMBER | |
| SCALE | |
| SCHEMA | |
| SCHEMA_NAME | |
| SCOPE_CATALOG | |
| SCOPE_NAME | |
| SCOPE_SCHEMA | |
| SECTION | |
| SECURITY | |
| SELF | |
| SEQUENCE | |
| SERIALIZABLE | |
| SERVER_NAME | |
| SESSION | |
| SETS | |
| SIMPLE | |
| SIZE | |
| SOURCE | |
| SPACE | |
| SPECIFIC_NAME | |
| SQRT | |
| STATE | |
| STATEMENT | |
| STDDEV_POP | |
| STDDEV_SAMP | |
| STRUCTURE | |
| STYLE | |
| SUBCLASS_ORIGIN | |
| SUBSTRING | |
| SUM | |
| TABLESAMPLE | |
| TABLE_NAME | |
| TEMPORARY | |
| TIES | |
| TOP_LEVEL_COUNT | |
| TRANSACTION | |
| TRANSACTIONS_COMMITTED | |
| TRANSACTIONS_ROLLED_BACK | |
| TRANSACTION_ACTIVE | |
| TRANSFORM | |
| TRANSFORMS | |
| TRANSLATE | |
| TRIGGER_CATALOG | |
| TRIGGER_NAME | |
| TRIGGER_SCHEMA | |
| TRIM | |
| TYPE | |
| UNBOUNDED | |
| UNCOMMITTED | |
| UNDER | |
| UNNAMED | |
| USAGE | |
| USER_DEFINED_TYPE_CATALOG | |
| USER_DEFINED_TYPE_CODE | |
| USER_DEFINED_TYPE_NAME | |
| USER_DEFINED_TYPE_SCHEMA | |
| VIEW | |
| WORK | |
| WRITE | |
| ZONE | |
<reserved word> ::= | |
ADD | |
| ALL | |
| ALLOCATE | |
| ALTER | |
| AND | |
| ANY | |
| ARE | |
| ARRAY | |
| AS | |
| ASENSITIVE | |
| ASYMMETRIC | |
| AT | |
| ATOMIC | |
| AUTHORIZATION | |
| BEGIN | |
| BETWEEN | |
| BIGINT | |
| BINARY | |
| BLOB | |
| BOOLEAN | |
| BOTH | |
| BY | |
| CALL | |
| CALLED | |
| CASCADED | |
| CASE | |
| CAST | |
| CHAR | |
| CHARACTER | |
| CHECK | |
| CLOB | |
| CLOSE | |
| COLLATE | |
| COLUMN | |
| COMMIT | |
| CONNECT | |
| CONSTRAINT | |
| CONTINUE | |
| CORRESPONDING | |
| CREATE | |
| CROSS | |
| CUBE | |
| CURRENT | |
| CURRENT_DATE | |
| CURRENT_DEFAULT_TRANSFORM_GROUP | |
| CURRENT_PATH | |
| CURRENT_ROLE | |
| CURRENT_TIME | |
| CURRENT_TIMESTAMP | |
| CURRENT_TRANSFORM_GROUP_FOR_TYPE | |
| CURRENT_USER | |
| CURSOR | |
| CYCLE | |
| DATE | |
| DAY | |
| DEALLOCATE | |
| DEC | |
| DECIMAL | |
| DECLARE | |
| DEFAULT | |
| DELETE | |
| DEREF | |
| DESCRIBE | |
| DETERMINISTIC | |
| DISCONNECT | |
| DISTINCT | |
| DOUBLE | |
| DROP | |
| DYNAMIC | |
| EACH | |
| ELEMENT | |
| ELSE | |
| END | |
| END-EXEC | |
| ESCAPE | |
| EXCEPT | |
| EXEC | |
| EXECUTE | |
| EXISTS | |
| EXTERNAL | |
| FALSE | |
| FETCH | |
| FILTER | |
| FLOAT | |
| FOR | |
| FOREIGN | |
| FREE | |
| FROM | |
| FULL | |
| FUNCTION | |
| GET | |
| GLOBAL | |
| GRANT | |
| GROUP | |
| GROUPING | |
| HAVING | |
| HOLD | |
| HOUR | |
| IDENTITY | |
| IMMEDIATE | |
| IN | |
| INDICATOR | |
| INNER | |
| INOUT | |
| INPUT | |
| INSENSITIVE | |
| INSERT | |
| INT | |
| INTEGER | |
| INTERSECT | |
| INTERVAL | |
| INTO | |
| IS | |
| ISOLATION | |
| JOIN | |
| LANGUAGE | |
| LARGE | |
| LATERAL | |
| LEADING | |
| LEFT | |
| LIKE | |
| LOCAL | |
| LOCALTIME | |
| LOCALTIMESTAMP | |
| MATCH | |
| MEMBER | |
| MERGE | |
| METHOD | |
| MINUTE | |
| MODIFIES | |
| MODULE | |
| MONTH | |
| MULTISET | |
| NATIONAL | |
| NATURAL | |
| NCHAR | |
| NCLOB | |
| NEW | |
| NO | |
| NONE | |
| NOT | |
| NULL | |
| NUMERIC | |
| OF | |
| OLD | |
| ON | |
| ONLY | |
| OPEN | |
| OR | |
| ORDER | |
| OUT | |
| OUTER | |
| OUTPUT | |
| OVER | |
| OVERLAPS | |
| PARAMETER | |
| PARTITION | |
| PRECISION | |
| PREPARE | |
| PRIMARY | |
| PROCEDURE | |
| RANGE | |
| READS | |
| REAL | |
| RECURSIVE | |
| REF | |
| REFERENCES | |
| REFERENCING | |
| REGR_AVGX | |
| REGR_AVGY | |
| REGR_COUNT | |
| REGR_INTERCEPT | |
| REGR_R2 | |
| REGR_SLOPE | |
| REGR_SXX | |
| REGR_SXY | |
| REGR_SYY | |
| RELEASE | |
| RESULT | |
| RETURN | |
| RETURNS | |
| REVOKE | |
| RIGHT | |
| ROLLBACK | |
| ROLLUP | |
| ROW | |
| ROWS | |
| SAVEPOINT | |
| SCROLL | |
| SEARCH | |
| SECOND | |
| SELECT | |
| SENSITIVE | |
| SESSION_USER | |
| SET | |
| SIMILAR | |
| SMALLINT | |
| SOME | |
| SPECIFIC | |
| SPECIFICTYPE | |
| SQL | |
| SQLEXCEPTION | |
| SQLSTATE | |
| SQLWARNING | |
| START | |
| STATIC | |
| SUBMULTISET | |
| SYMMETRIC | |
| SYSTEM | |
| SYSTEM_USER | |
| TABLE | |
| THEN | |
| TIME | |
| TIMESTAMP | |
| TIMEZONE_HOUR | |
| TIMEZONE_MINUTE | |
| TO | |
| TRAILING | |
| TRANSLATION | |
| TREAT | |
| TRIGGER | |
| TRUE | |
| UESCAPE | |
| UNION | |
| UNIQUE | |
| UNKNOWN | |
| UNNEST | |
| UPDATE | |
| UPPER | |
| USER | |
| USING | |
| VALUE | |
| VALUES | |
| VAR_POP | |
| VAR_SAMP | |
| VARCHAR | |
| VARYING | |
| WHEN | |
| WHENEVER | |
| WHERE | |
| WIDTH_BUCKET | |
| WINDOW | |
| WITH | |
| WITHIN | |
| WITHOUT | |
| YEAR | |
--hr | |
--h3 5.3 <literal> (p143) | |
--/h3 | |
<literal> ::= <signed numeric literal> | <general literal> | |
<unsigned literal> ::= <unsigned numeric literal> | <general literal> | |
<general literal> ::= | |
<character string literal> | |
| <national character string literal> | |
| <Unicode character string literal> | |
| <binary string literal> | |
| <datetime literal> | |
| <interval literal> | |
| <boolean literal> | |
<character string literal> ::= | |
[ <introducer><character set specification> ] | |
<quote> [ <character representation>... ] <quote> | |
[ { <separator> <quote> [ <character representation>... ] <quote> }... ] | |
<introducer> ::= <underscore> | |
<character representation> ::= <nonquote character> | <quote symbol> | |
<nonquote character> ::= !! See the Syntax Rules. | |
--p | |
--small | |
--i | |
The <quote symbol> rule consists of two immediately adjacent <quote> | |
marks with no spaces. | |
As usual, this would be best handled in the lexical analyzer, not in the | |
grammar. | |
--/i | |
--/small | |
--/p | |
<quote symbol> ::= <quote><quote> | |
<national character string literal> ::= | |
N <quote> [ <character representation>... ] <quote> | |
[ { <separator> <quote> [ <character representation>... ] <quote> }... ] | |
<Unicode character string literal> ::= | |
[ <introducer><character set specification> ] | |
U<ampersand><quote> [ <Unicode representation>... ] <quote> | |
[ { <separator> <quote> [ <Unicode representation>... ] <quote> }... ] | |
[ ESCAPE <escape character> ] | |
<Unicode representation> ::= <character representation> | <Unicode escape value> | |
<binary string literal> ::= | |
X <quote> [ { <hexit><hexit> }... ] <quote> | |
[ { <separator> <quote> [ { <hexit><hexit> }... ] <quote> }... ] | |
[ ESCAPE <escape character> ] | |
<hexit> ::= <digit> | A | B | C | D | E | F | a | b | c | d | e | f | |
<signed numeric literal> ::= [ <sign> ] <unsigned numeric literal> | |
<unsigned numeric literal> ::= <exact numeric literal> | <approximate numeric literal> | |
<exact numeric literal> ::= | |
<unsigned integer> [ <period> [ <unsigned integer> ] ] | |
| <period> <unsigned integer> | |
<sign> ::= <plus sign> | <minus sign> | |
<approximate numeric literal> ::= <mantissa> E <exponent> | |
<mantissa> ::= <exact numeric literal> | |
<exponent> ::= <signed integer> | |
<signed integer> ::= [ <sign> ] <unsigned integer> | |
<unsigned integer> ::= <digit>... | |
<datetime literal> ::= <date literal> | <time literal> | <timestamp literal> | |
<date literal> ::= DATE <date string> | |
<time literal> ::= TIME <time string> | |
<timestamp literal> ::= TIMESTAMP <timestamp string> | |
<date string> ::= <quote> <unquoted date string> <quote> | |
<time string> ::= <quote> <unquoted time string> <quote> | |
<timestamp string> ::= <quote> <unquoted timestamp string> <quote> | |
<time zone interval> ::= <sign> <hours value> <colon> <minutes value> | |
<date value> ::= <years value> <minus sign> <months value> <minus sign> <days value> | |
<time value> ::= <hours value> <colon> <minutes value> <colon> <seconds value> | |
<interval literal> ::= INTERVAL [ <sign> ] <interval string> <interval qualifier> | |
<interval string> ::= <quote> <unquoted interval string> <quote> | |
<unquoted date string> ::= <date value> | |
<unquoted time string> ::= <time value> [ <time zone interval> ] | |
<unquoted timestamp string> ::= <unquoted date string> <space> <unquoted time string> | |
<unquoted interval string> ::= [ <sign> ] { <year-month literal> | <day-time literal> } | |
<year-month literal> ::= <years value> | [ <years value> <minus sign> ] <months value> | |
<day-time literal> ::= <day-time interval> | <time interval> | |
<day-time interval> ::= | |
<days value> [ <space> <hours value> [ <colon> <minutes value> [ <colon> <seconds value> ] ] ] | |
<time interval> ::= | |
<hours value> [ <colon> <minutes value> [ <colon> <seconds value> ] ] | |
| <minutes value> [ <colon> <seconds value> ] | |
| <seconds value> | |
<years value> ::= <datetime value> | |
<months value> ::= <datetime value> | |
<days value> ::= <datetime value> | |
<hours value> ::= <datetime value> | |
<minutes value> ::= <datetime value> | |
<seconds value> ::= <seconds integer value> [ <period> [ <seconds fraction> ] ] | |
<seconds integer value> ::= <unsigned integer> | |
<seconds fraction> ::= <unsigned integer> | |
<datetime value> ::= <unsigned integer> | |
<boolean literal> ::= TRUE | FALSE | UNKNOWN | |
--hr | |
--h3 5.4 Names and identifiers (p151) | |
--/h3 | |
<identifier> ::= <actual identifier> | |
<actual identifier> ::= <regular identifier> | <delimited identifier> | |
<SQL language identifier> ::= | |
<SQL language identifier start> [ { <underscore> | <SQL language identifier part> }... ] | |
<SQL language identifier start> ::= <simple Latin letter> | |
<SQL language identifier part> ::= <simple Latin letter> | <digit> | |
<authorization identifier> ::= <role name> | <user identifier> | |
<table name> ::= <local or schema qualified name> | |
<domain name> ::= <schema qualified name> | |
<schema name> ::= [ <catalog name> <period> ] <unqualified schema name> | |
<catalog name> ::= <identifier> | |
<schema qualified name> ::= [ <schema name> <period> ] <qualified identifier> | |
<local or schema qualified name> ::= [ <local or schema qualifier> <period> ] <qualified identifier> | |
<local or schema qualifier> ::= <schema name> | MODULE | |
<qualified identifier> ::= <identifier> | |
<column name> ::= <identifier> | |
<correlation name> ::= <identifier> | |
<query name> ::= <identifier> | |
<SQL-client module name> ::= <identifier> | |
<procedure name> ::= <identifier> | |
<schema qualified routine name> ::= <schema qualified name> | |
<method name> ::= <identifier> | |
<specific name> ::= <schema qualified name> | |
<cursor name> ::= <local qualified name> | |
<local qualified name> ::= [ <local qualifier> <period> ] <qualified identifier> | |
<local qualifier> ::= MODULE | |
<host parameter name> ::= <colon> <identifier> | |
<SQL parameter name> ::= <identifier> | |
<constraint name> ::= <schema qualified name> | |
<external routine name> ::= <identifier> | <character string literal> | |
<trigger name> ::= <schema qualified name> | |
<collation name> ::= <schema qualified name> | |
<character set name> ::= [ <schema name> <period> ] <SQL language identifier> | |
<transliteration name> ::= <schema qualified name> | |
<transcoding name> ::= <schema qualified name> | |
<user-defined type name> ::= <schema qualified type name> | |
<schema-resolved user-defined type name> ::= <user-defined type name> | |
<schema qualified type name> ::= [ <schema name> <period> ] <qualified identifier> | |
<attribute name> ::= <identifier> | |
<field name> ::= <identifier> | |
<savepoint name> ::= <identifier> | |
<sequence generator name> ::= <schema qualified name> | |
<role name> ::= <identifier> | |
<user identifier> ::= <identifier> | |
<connection name> ::= <simple value specification> | |
<SQL-server name> ::= <simple value specification> | |
<connection user name> ::= <simple value specification> | |
<SQL statement name> ::= <statement name> | <extended statement name> | |
<statement name> ::= <identifier> | |
<extended statement name> ::= [ <scope option> ] <simple value specification> | |
<dynamic cursor name> ::= <cursor name> | <extended cursor name> | |
<extended cursor name> ::= [ <scope option> ] <simple value specification> | |
<descriptor name> ::= [ <scope option> ] <simple value specification> | |
<scope option> ::= GLOBAL | LOCAL | |
<window name> ::= <identifier> | |
--hr | |
--h2 6 Scalar expressions | |
--/h2 | |
--h3 6.1 <data type> (p161) | |
--/h3 | |
<data type> ::= | |
<predefined type> | |
| <row type> | |
| <path-resolved user-defined type name> | |
| <reference type> | |
| <collection type> | |
<predefined type> ::= | |
<character string type> [ CHARACTER SET <character set specification> ] [ <collate clause> ] | |
| <national character string type> [ <collate clause> ] | |
| <binary large object string type> | |
| <numeric type> | |
| <boolean type> | |
| <datetime type> | |
| <interval type> | |
<character string type> ::= | |
CHARACTER [ <left paren> <length> <right paren> ] | |
| CHAR [ <left paren> <length> <right paren> ] | |
| CHARACTER VARYING <left paren> <length> <right paren> | |
| CHAR VARYING <left paren> <length> <right paren> | |
| VARCHAR <left paren> <length> <right paren> | |
| CHARACTER LARGE OBJECT [ <left paren> <large object length> <right paren> ] | |
| CHAR LARGE OBJECT [ <left paren> <large object length> <right paren> ] | |
| CLOB [ <left paren> <large object length> <right paren> ] | |
<national character string type> ::= | |
NATIONAL CHARACTER [ <left paren> <length> <right paren> ] | |
| NATIONAL CHAR [ <left paren> <length> <right paren> ] | |
| NCHAR [ <left paren> <length> <right paren> ] | |
| NATIONAL CHARACTER VARYING <left paren> <length> <right paren> | |
| NATIONAL CHAR VARYING <left paren> <length> <right paren> | |
| NCHAR VARYING <left paren> <length> <right paren> | |
| NATIONAL CHARACTER LARGE OBJECT [ <left paren> <large object length> <right paren> ] | |
| NCHAR LARGE OBJECT [ <left paren> <large object length> <right paren> ] | |
| NCLOB [ <left paren> <large object length> <right paren> ] | |
<binary large object string type> ::= | |
BINARY LARGE OBJECT [ <left paren> <large object length> <right paren> ] | |
| BLOB [ <left paren> <large object length> <right paren> ] | |
<numeric type> ::= <exact numeric type> | <approximate numeric type> | |
<exact numeric type> ::= | |
NUMERIC [ <left paren> <precision> [ <comma> <scale> ] <right paren> ] | |
| DECIMAL [ <left paren> <precision> [ <comma> <scale> ] <right paren> ] | |
| DEC [ <left paren> <precision> [ <comma> <scale> ] <right paren> ] | |
| SMALLINT | |
| INTEGER | |
| INT | |
| BIGINT | |
<approximate numeric type> ::= | |
FLOAT [ <left paren> <precision> <right paren> ] | |
| REAL | |
| DOUBLE PRECISION | |
<length> ::= <unsigned integer> | |
<large object length> ::= | |
<unsigned integer> [ <multiplier> ] [ <char length units> ] | |
| <large object length token> [ <char length units> ] | |
<char length units> ::= CHARACTERS | CODE_UNITS | OCTETS | |
<precision> ::= <unsigned integer> | |
<scale> ::= <unsigned integer> | |
<boolean type> ::= BOOLEAN | |
<datetime type> ::= | |
DATE | |
| TIME [ <left paren> <time precision> <right paren> ] [ <with or without time zone> ] | |
| TIMESTAMP [ <left paren> <timestamp precision> <right paren> ] [ <with or without time zone> ] | |
<with or without time zone> ::= WITH TIME ZONE | WITHOUT TIME ZONE | |
<time precision> ::= <time fractional seconds precision> | |
<timestamp precision> ::= <time fractional seconds precision> | |
<time fractional seconds precision> ::= <unsigned integer> | |
<interval type> ::= INTERVAL <interval qualifier> | |
<row type> ::= ROW <row type body> | |
<row type body> ::= <left paren> <field definition> [ { <comma> <field definition> }... ] <right paren> | |
<reference type> ::= REF <left paren> <referenced type> <right paren> [ <scope clause> ] | |
<scope clause> ::= SCOPE <table name> | |
<referenced type> ::= <path-resolved user-defined type name> | |
<path-resolved user-defined type name> ::= <user-defined type name> | |
<collection type> ::= <array type> | <multiset type> | |
<array type> ::= <data type> ARRAY [ <left bracket or trigraph> <unsigned integer> <right bracket or trigraph> ] | |
<multiset type> ::= <data type> MULTISET | |
--hr | |
--h3 6.2 <field definition> (p173) | |
--/h3 | |
<field definition> ::= <field name> <data type> [ <reference scope check> ] | |
--hr | |
--h3 6.3 <value expression primary> (p174) | |
--/h3 | |
<value expression primary> ::= | |
<parenthesized value expression> | |
| <nonparenthesized value expression primary> | |
<parenthesized value expression> ::= <left paren> <value expression> <right paren> | |
<nonparenthesized value expression primary> ::= | |
<unsigned value specification> | |
| <column reference> | |
| <set function specification> | |
| <window function> | |
| <scalar subquery> | |
| <case expression> | |
| <cast specification> | |
| <field reference> | |
| <subtype treatment> | |
| <method invocation> | |
| <static method invocation> | |
| <new specification> | |
| <attribute or method reference> | |
| <reference resolution> | |
| <collection value constructor> | |
| <array element reference> | |
| <multiset element reference> | |
| <routine invocation> | |
| <next value expression> | |
--hr | |
--h3 6.4 <value specification> and <target specification> (p176) | |
--/h3 | |
<value specification> ::= <literal> | <general value specification> | |
<unsigned value specification> ::= <unsigned literal> | <general value specification> | |
<general value specification> ::= | |
<host parameter specification> | |
| <SQL parameter reference> | |
| <dynamic parameter specification> | |
| <embedded variable specification> | |
| <current collation specification> | |
| CURRENT_DEFAULT_TRANSFORM_GROUP | |
| CURRENT_PATH | |
| CURRENT_ROLE | |
| CURRENT_TRANSFORM_GROUP_FOR_TYPE <path-resolved user-defined type name> | |
| CURRENT_USER | |
| SESSION_USER | |
| SYSTEM_USER | |
| USER | |
| VALUE | |
<simple value specification> ::= | |
<literal> | |
| <host parameter name> | |
| <SQL parameter reference> | |
| <embedded variable name> | |
<target specification> ::= | |
<host parameter specification> | |
| <SQL parameter reference> | |
| <column reference> | |
| <target array element specification> | |
| <dynamic parameter specification> | |
| <embedded variable specification> | |
<simple target specification> ::= | |
<host parameter specification> | |
| <SQL parameter reference> | |
| <column reference> | |
| <embedded variable name> | |
<host parameter specification> ::= <host parameter name> [ <indicator parameter> ] | |
<dynamic parameter specification> ::= <question mark> | |
<embedded variable specification> ::= <embedded variable name> [ <indicator variable> ] | |
<indicator variable> ::= [ INDICATOR ] <embedded variable name> | |
<indicator parameter> ::= [ INDICATOR ] <host parameter name> | |
<target array element specification> ::= | |
<target array reference> <left bracket or trigraph> <simple value specification> <right bracket or trigraph> | |
<target array reference> ::= <SQL parameter reference> | <column reference> | |
<current collation specification> ::= CURRENT_COLLATION <left paren> <string value expression> <right paren> | |
--hr | |
--h3 6.5 <contextually typed value specification> (p181) | |
--/h3 | |
<contextually typed value specification> ::= | |
<implicitly typed value specification> | <default specification> | |
<implicitly typed value specification> ::= <null specification> | <empty specification> | |
<null specification> ::= NULL | |
<empty specification> ::= | |
ARRAY <left bracket or trigraph> <right bracket or trigraph> | |
| MULTISET <left bracket or trigraph> <right bracket or trigraph> | |
<default specification> ::= DEFAULT | |
--hr | |
--h3 6.6 <identifier chain> (p183) | |
--/h3 | |
<identifier chain> ::= <identifier> [ { <period> <identifier> }... ] | |
<basic identifier chain> ::= <identifier chain> | |
--hr | |
--h3 6.7 <column reference> (p187) | |
--/h3 | |
<column reference> ::= | |
<basic identifier chain> | |
| MODULE <period> <qualified identifier> <period> <column name> | |
--hr | |
--h3 6.8 <SQL parameter reference> (p190) | |
--/h3 | |
<SQL parameter reference> ::= <basic identifier chain> | |
--hr | |
--h3 6.9 <set function specification> (p191) | |
--/h3 | |
<set function specification> ::= <aggregate function> | <grouping operation> | |
<grouping operation> ::= GROUPING <left paren> <column reference> [ { <comma> <column reference> }... ] <right paren> | |
--hr | |
--h3 6.10 <window function> (p193) | |
--/h3 | |
<window function> ::= <window function type> OVER <window name or specification> | |
<window function type> ::= | |
<rank function type> <left paren> <right paren> | |
| ROW_NUMBER <left paren> <right paren> | |
| <aggregate function> | |
<rank function type> ::= RANK | DENSE_RANK | PERCENT_RANK | CUME_DIST | |
<window name or specification> ::= <window name> | <in-line window specification> | |
<in-line window specification> ::= <window specification> | |
--hr | |
--h3 6.11 <case expression> (p197) | |
--/h3 | |
<case expression> ::= <case abbreviation> | <case specification> | |
<case abbreviation> ::= | |
NULLIF <left paren> <value expression> <comma> <value expression> <right paren> | |
| COALESCE <left paren> <value expression> { <comma> <value expression> }... <right paren> | |
<case specification> ::= <simple case> | <searched case> | |
<simple case> ::= CASE <case operand> <simple when clause>... [ <else clause> ] END | |
<searched case> ::= CASE <searched when clause>... [ <else clause> ] END | |
<simple when clause> ::= WHEN <when operand> THEN <result> | |
<searched when clause> ::= WHEN <search condition> THEN <result> | |
<else clause> ::= ELSE <result> | |
<case operand> ::= <row value predicand> | <overlaps predicate> | |
<when operand> ::= | |
<row value predicand> | |
| <comparison predicate part 2> | |
| <between predicate part 2> | |
| <in predicate part 2> | |
| <character like predicate part 2> | |
| <octet like predicate part 2> | |
| <similar predicate part 2> | |
| <null predicate part 2> | |
| <quantified comparison predicate part 2> | |
| <match predicate part 2> | |
| <overlaps predicate part 2> | |
| <distinct predicate part 2> | |
| <member predicate part 2> | |
| <submultiset predicate part 2> | |
| <set predicate part 2> | |
| <type predicate part 2> | |
<result> ::= <result expression> | NULL | |
<result expression> ::= <value expression> | |
--hr | |
--h3 6.12 <cast specification> (p200) | |
--/h3 | |
<cast specification> ::= CAST <left paren> <cast operand> AS <cast target> <right paren> | |
<cast operand> ::= <value expression> | <implicitly typed value specification> | |
<cast target> ::= <domain name> | <data type> | |
--hr | |
--h3 6.13 <next value expression> (p216) | |
--/h3 | |
<next value expression> ::= NEXT VALUE FOR <sequence generator name> | |
--hr | |
--h3 6.14 <field reference> (p218) | |
--/h3 | |
<field reference> ::= <value expression primary> <period> <field name> | |
--hr | |
--h3 6.15 <subtype treatment> (p219) | |
--/h3 | |
<subtype treatment> ::= | |
TREAT <left paren> <subtype operand> AS <target subtype> <right paren> | |
<subtype operand> ::= <value expression> | |
<target subtype> ::= | |
<path-resolved user-defined type name> | |
| <reference type> | |
--hr | |
--h3 6.16 <method invocation> (p221) | |
--/h3 | |
<method invocation> ::= <direct invocation> | <generalized invocation> | |
<direct invocation> ::= | |
<value expression primary> <period> <method name> [ <SQL argument list> ] | |
<generalized invocation> ::= | |
<left paren> <value expression primary> AS <data type> <right paren> <period> <method name> | |
[ <SQL argument list> ] | |
<method selection> ::= <routine invocation> | |
<constructor method selection> ::= <routine invocation> | |
--hr | |
--h3 6.17 <static method invocation> (p223) | |
--/h3 | |
<static method invocation> ::= | |
<path-resolved user-defined type name> <double colon> <method name> [ <SQL argument list> ] | |
<static method selection> ::= <routine invocation> | |
--hr | |
--h3 6.18 <new specification> (p225) | |
--/h3 | |
<new specification> ::= NEW <routine invocation> | |
<new invocation> ::= <method invocation> | <routine invocation> | |
--hr | |
--h3 6.19 <attribute or method reference> (p227) | |
--/h3 | |
<attribute or method reference> ::= | |
<value expression primary> <dereference operator> <qualified identifier> | |
[ <SQL argument list> ] | |
<dereference operator> ::= <right arrow> | |
--hr | |
--h3 6.20 <dereference operation> (p229) | |
--/h3 | |
<dereference operation> ::= <reference value expression> <dereference operator> <attribute name> | |
--hr | |
--h3 6.21 <method reference> (p230) | |
--/h3 | |
<method reference> ::= | |
<value expression primary> <dereference operator> <method name> <SQL argument list> | |
--hr | |
--h3 6.22 <reference resolution> (p232) | |
--/h3 | |
<reference resolution> ::= DEREF <left paren> <reference value expression> <right paren> | |
--hr | |
--h3 6.23 <array element reference> (p234) | |
--/h3 | |
<array element reference> ::= | |
<array value expression> <left bracket or trigraph> <numeric value expression> <right bracket or trigraph> | |
--hr | |
--h3 6.24 <multiset element reference> (p235) | |
--/h3 | |
<multiset element reference> ::= | |
ELEMENT <left paren> <multiset value expression> <right paren> | |
--h3 6.25 <value expression> (p236) | |
--/h3 | |
--p | |
Specify a value. | |
--/p | |
<value expression> ::= | |
<common value expression> | |
| <boolean value expression> | |
| <row value expression> | |
<common value expression> ::= | |
<numeric value expression> | |
| <string value expression> | |
| <datetime value expression> | |
| <interval value expression> | |
| <user-defined type value expression> | |
| <reference value expression> | |
| <collection value expression> | |
<user-defined type value expression> ::= <value expression primary> | |
<reference value expression> ::= <value expression primary> | |
<collection value expression> ::= <array value expression> | <multiset value expression> | |
<collection value constructor> ::= <array value constructor> | <multiset value constructor> | |
--h3 6.26 <numeric value expression> (p240) | |
--/h3 | |
--p | |
Specify a numeric value. | |
--/p | |
<numeric value expression> ::= | |
<term> | |
| <numeric value expression> <plus sign> <term> | |
| <numeric value expression> <minus sign> <term> | |
<term> ::= | |
<factor> | |
| <term> <asterisk> <factor> | |
| <term> <solidus> <factor> | |
<factor> ::= [ <sign> ] <numeric primary> | |
<numeric primary> ::= | |
<value expression primary> | |
| <numeric value function> | |
--h3 6.27 <numeric value function> (p242) | |
--/h3 | |
--p | |
Specify a function yielding a value of type numeric. | |
--/p | |
<numeric value function> ::= | |
<position expression> | |
| <extract expression> | |
| <length expression> | |
| <cardinality expression> | |
| <absolute value expression> | |
| <modulus expression> | |
| <natural logarithm> | |
| <exponential function> | |
| <power function> | |
| <square root> | |
| <floor function> | |
| <ceiling function> | |
| <width bucket function> | |
<position expression> ::= | |
<string position expression> | |
| <blob position expression> | |
<string position expression> ::= | |
POSITION <left paren> <string value expression> IN <string value expression> [ USING <char length units> ] <right paren> | |
<blob position expression> ::= | |
POSITION <left paren> <blob value expression> IN <blob value expression> <right paren> | |
<length expression> ::= | |
<char length expression> | |
| <octet length expression> | |
<char length expression> ::= | |
{ CHAR_LENGTH | CHARACTER_LENGTH } <left paren> <string value expression> [ USING <char length units> ] <right paren> | |
<octet length expression> ::= OCTET_LENGTH <left paren> <string value expression> <right paren> | |
<extract expression> ::= EXTRACT <left paren> <extract field> FROM <extract source> <right paren> | |
<extract field> ::= <primary datetime field> | <time zone field> | |
<time zone field> ::= TIMEZONE_HOUR | TIMEZONE_MINUTE | |
<extract source> ::= <datetime value expression> | <interval value expression> | |
<cardinality expression> ::= CARDINALITY <left paren> <collection value expression> <right paren> | |
<absolute value expression> ::= ABS <left paren> <numeric value expression> <right paren> | |
<modulus expression> ::= MOD <left paren> <numeric value expression dividend> <comma> <numeric value expression divisor><right paren> | |
<natural logarithm> ::= LN <left paren> <numeric value expression> <right paren> | |
<exponential function> ::= EXP <left paren> <numeric value expression> <right paren> | |
<power function> ::= POWER <left paren> <numeric value expression base> <comma> <numeric value expression exponent> <right paren> | |
<numeric value expression base> ::= <numeric value expression> | |
<numeric value expression exponent> ::= <numeric value expression> | |
<square root> ::= SQRT <left paren> <numeric value expression> <right paren> | |
<floor function> ::= FLOOR <left paren> <numeric value expression> <right paren> | |
<ceiling function> ::= { CEIL | CEILING } <left paren> <numeric value expression> <right paren> | |
<width bucket function> ::= WIDTH_BUCKET <left paren> <width bucket operand> <comma> <width bucket bound 1> <comma> <width bucket bound 2> <comma> <width bucket count> <right paren> | |
<width bucket operand> ::= <numeric value expression> | |
<width bucket bound 1> ::= <numeric value expression> | |
<width bucket bound 2> ::= <numeric value expression> | |
<width bucket count> ::= <numeric value expression> | |
--h3 6.28 <string value expression> (p251) | |
--/h3 | |
--p | |
Specify a character string value or a binary string value. | |
--/p | |
<string value expression> ::= <character value expression> | <blob value expression> | |
<character value expression> ::= <concatenation> | <character factor> | |
<concatenation> ::= <character value expression> <concatenation operator> <character factor> | |
<character factor> ::= <character primary> [ <collate clause> ] | |
<character primary> ::= <value expression primary> | <string value function> | |
<blob value expression> ::= <blob concatenation> | <blob factor> | |
<blob factor> ::= <blob primary> | |
<blob primary> ::= <value expression primary> | <string value function> | |
<blob concatenation> ::= <blob value expression> <concatenation operator> <blob factor> | |
--h3 6.29 <string value function> (p255) | |
--/h3 | |
--p | |
Specify a function yielding a value of type character string or binary string. | |
--/p | |
<string value function> ::= <character value function> | <blob value function> | |
<character value function> ::= | |
<character substring function> | |
| <regular expression substring function> | |
| <fold> | |
| <transcoding> | |
| <character transliteration> | |
| <trim function> | |
| <character overlay function> | |
| <normalize function> | |
| <specific type method> | |
<character substring function> ::= | |
SUBSTRING <left paren> <character value expression> FROM <start position> | |
[ FOR <string length> ] [ USING <char length units> ] <right paren> | |
<regular expression substring function> ::= | |
SUBSTRING <left paren> <character value expression> | |
SIMILAR <character value expression> ESCAPE <escape character> <right paren> | |
<fold> ::= { UPPER | LOWER } <left paren> <character value expression> <right paren> | |
<transcoding> ::= CONVERT <left paren> <character value expression> USING <transcoding name> <right paren> | |
<character transliteration> ::= TRANSLATE <left paren> <character value expression> USING <transliteration name> <right paren> | |
<trim function> ::= TRIM <left paren> <trim operands> <right paren> | |
<trim operands> ::= [ [ <trim specification> ] [ <trim character> ] FROM ] <trim source> | |
<trim source> ::= <character value expression> | |
<trim specification> ::= LEADING | TRAILING | BOTH | |
<trim character> ::= <character value expression> | |
<character overlay function> ::= | |
OVERLAY <left paren> <character value expression> PLACING <character value expression> | |
FROM <start position> [ FOR <string length> ] [ USING <char length units> ] <right paren> | |
<normalize function> ::= NORMALIZE <left paren> <character value expression> <right paren> | |
<specific type method> ::= <user-defined type value expression> <period> SPECIFICTYPE | |
<blob value function> ::= | |
<blob substring function> | |
| <blob trim function> | |
| <blob overlay function> | |
<blob substring function> ::= | |
SUBSTRING <left paren> <blob value expression> FROM <start position> [ FOR <string length> ] <right paren> | |
<blob trim function> ::= TRIM <left paren> <blob trim operands> <right paren> | |
<blob trim operands> ::= [ [ <trim specification> ] [ <trim octet> ] FROM ] <blob trim source> | |
<blob trim source> ::= <blob value expression> | |
<trim octet> ::= <blob value expression> | |
<blob overlay function> ::= | |
OVERLAY <left paren> <blob value expression> PLACING <blob value expression> | |
FROM <start position> [ FOR <string length> ] <right paren> | |
<start position> ::= <numeric value expression> | |
<string length> ::= <numeric value expression> | |
--h3 6.30 <datetime value expression> (p266) | |
--/h3 | |
--p | |
Specify a datetime value. | |
--/p | |
<datetime value expression> ::= | |
<datetime term> | |
| <interval value expression> <plus sign> <datetime term> | |
| <datetime value expression> <plus sign> <interval term> | |
| <datetime value expression> <minus sign> <interval term> | |
<datetime term> ::= <datetime factor> | |
<datetime factor> ::= <datetime primary> [ <time zone> ] | |
<datetime primary> ::= <value expression primary> | <datetime value function> | |
<time zone> ::= AT <time zone specifier> | |
<time zone specifier> ::= LOCAL | TIME ZONE <interval primary> | |
--h3 6.31 <datetime value function> (p269) | |
--/h3 | |
--p | |
Specify a function yielding a value of type datetime. | |
--/p | |
<datetime value function> ::= | |
<current date value function> | |
| <current time value function> | |
| <current timestamp value function> | |
| <current local time value function> | |
| <current local timestamp value function> | |
<current date value function> ::= CURRENT_DATE | |
<current time value function> ::= CURRENT_TIME [ <left paren> <time precision> <right paren> ] | |
<current local time value function> ::= LOCALTIME [ <left paren> <time precision> <right paren> ] | |
<current timestamp value function> ::= CURRENT_TIMESTAMP [ <left paren> <timestamp precision> <right paren> ] | |
<current local timestamp value function> ::= LOCALTIMESTAMP [ <left paren> <timestamp precision> <right paren> ] | |
--h3 6.32 <interval value expression> (p271) | |
--/h3 | |
--p | |
Specify an interval value. | |
--/p | |
<interval value expression> ::= | |
<interval term> | |
| <interval value expression 1> <plus sign> <interval term 1> | |
| <interval value expression 1> <minus sign> <interval term 1> | |
| <left paren> <datetime value expression> <minus sign> <datetime term> <right paren> <interval qualifier> | |
<interval term> ::= | |
<interval factor> | |
| <interval term 2> <asterisk> <factor> | |
| <interval term 2> <solidus> <factor> | |
| <term> <asterisk> <interval factor> | |
<interval factor> ::= [ <sign> ] <interval primary> | |
<interval primary> ::= | |
<value expression primary> [ <interval qualifier> ] | |
| <interval value function> | |
<interval value expression 1> ::= <interval value expression> | |
<interval term 1> ::= <interval term> | |
<interval term 2> ::= <interval term> | |
--h3 6.33 <interval value function> (p276) | |
--/h3 | |
<interval value function> ::= <interval absolute value function> | |
<interval absolute value function> ::= ABS <left paren> <interval value expression> <right paren> | |
--h3 6.34 <boolean value expression> (p277) | |
--/h3 | |
<boolean value expression> ::= | |
<boolean term> | |
| <boolean value expression> OR <boolean term> | |
<boolean term> ::= | |
<boolean factor> | |
| <boolean term> AND <boolean factor> | |
<boolean factor> ::= [ NOT ] <boolean test> | |
<boolean test> ::= <boolean primary> [ IS [ NOT ] <truth value> ] | |
<truth value> ::= TRUE | FALSE | UNKNOWN | |
<boolean primary> ::= <predicate> | <boolean predicand> | |
<boolean predicand> ::= | |
<parenthesized boolean value expression> | |
| <nonparenthesized value expression primary> | |
<parenthesized boolean value expression> ::= <left paren> <boolean value expression> <right paren> | |
--h3 6.35 <array value expression> (p284) | |
--/h3 | |
<array value expression> ::= <array concatenation> | <array factor> | |
<array concatenation> ::= <array value expression 1> <concatenation operator> <array factor> | |
<array value expression 1> ::= <array value expression> | |
<array factor> ::= <value expression primary> | |
--h3 6.36 <array value constructor> (p284) | |
--/h3 | |
<array value constructor> ::= | |
<array value constructor by enumeration> | |
| <array value constructor by query> | |
<array value constructor by enumeration> ::= | |
ARRAY <left bracket or trigraph> <array element list> <right bracket or trigraph> | |
<array element list> ::= <array element> [ { <comma> <array element> }... ] | |
<array element> ::= <value expression> | |
<array value constructor by query> ::= | |
ARRAY <left paren> <query expression> [ <order by clause> ] <right paren> | |
--h3 6.37 <multiset value expression> (p286) | |
--/h3 | |
<multiset value expression> ::= | |
<multiset term> | |
| <multiset value expression> MULTISET UNION [ ALL | DISTINCT ] <multiset term> | |
| <multiset value expression> MULTISET EXCEPT [ ALL | DISTINCT ] <multiset term> | |
<multiset term> ::= | |
<multiset primary> | |
| <multiset term> MULTISET INTERSECT [ ALL | DISTINCT ] <multiset primary> | |
<multiset primary> ::= <multiset value function> | <value expression primary> | |
--h3 6.38 <multiset value function> (p289) | |
--/h3 | |
<multiset value function> ::= <multiset set function> | |
<multiset set function> ::= SET <left paren> <multiset value expression> <right paren> | |
--h3 6.39 <multiset value constructor> (p290) | |
--/h3 | |
<multiset value constructor> ::= | |
<multiset value constructor by enumeration> | |
| <multiset value constructor by query> | |
| <table value constructor by query> | |
<multiset value constructor by enumeration> ::= MULTISET <left bracket or trigraph> <multiset element list> <right bracket or trigraph> | |
<multiset element list> ::= <multiset element> [ { <comma> <multiset element> } ] | |
<multiset element> ::= <value expression> | |
<multiset value constructor by query> ::= MULTISET <left paren> <query expression> <right paren> | |
<table value constructor by query> ::= TABLE <left paren> <query expression> <right paren> | |
--hr | |
--h2 7 Query expressions | |
--/h2 | |
--h3 7.1 <row value constructor> (p293) | |
--/h3 | |
--p | |
Specify a value or list of values to be constructed into a row or partial row. | |
--/p | |
<row value constructor> ::= | |
<common value expression> | |
| <boolean value expression> | |
| <explicit row value constructor> | |
<explicit row value constructor> ::= | |
<left paren> <row value constructor element> <comma> <row value constructor element list> <right paren> | |
| ROW <left paren> <row value constructor element list> <right paren> | |
| <row subquery> | |
<row value constructor element list> ::= | |
<row value constructor element> [ { <comma> <row value constructor element> }... ] | |
<row value constructor element> ::= <value expression> | |
<contextually typed row value constructor> ::= | |
<common value expression> | |
| <boolean value expression> | |
| <contextually typed value specification> | |
| <left paren> <contextually typed row value constructor element> <comma> <contextually typed row value constructor element list> <right paren> | |
| ROW <left paren> <contextually typed row value constructor element list> <right paren> | |
<contextually typed row value constructor element list> ::= | |
<contextually typed row value constructor element> | |
[ { <comma> <contextually typed row value constructor element> }... ] | |
<contextually typed row value constructor element> ::= | |
<value expression> | |
| <contextually typed value specification> | |
<row value constructor predicand> ::= | |
<common value expression> | |
| <boolean predicand> | |
| <explicit row value constructor> | |
--h3 7.2 <row value expression> (p296) | |
--/h3 | |
--p | |
Specify a row value. | |
--/p | |
<row value expression> ::= | |
<row value special case> | |
| <explicit row value constructor> | |
<table row value expression> ::= | |
<row value special case> | |
| <row value constructor> | |
<contextually typed row value expression> ::= | |
<row value special case> | |
| <contextually typed row value constructor> | |
<row value predicand> ::= | |
<row value special case> | |
| <row value constructor predicand> | |
<row value special case> ::= <nonparenthesized value expression primary> | |
--h3 7.3 <table value constructor> (p298) | |
--/h3 | |
--p | |
Specify a set of <row value expression>s to be constructed into a table. | |
--/p | |
<table value constructor> ::= VALUES <row value expression list> | |
<row value expression list> ::= <table row value expression> [ { <comma> <table row value expression> }... ] | |
<contextually typed table value constructor> ::= VALUES <contextually typed row value expression list> | |
<contextually typed row value expression list> ::= <contextually typed row value expression> [ { <comma> <contextually typed row value expression> }... ] | |
--h3 7.4 <table expression> (p300) | |
--/h3 | |
--p | |
Specify a table or a grouped table. | |
--/p | |
<table expression> ::= | |
<from clause> | |
[ <where clause> ] | |
[ <group by clause> ] | |
[ <having clause> ] | |
[ <window clause> ] | |
--h3 7.5 <from clause> (p301) | |
--/h3 | |
--p | |
Specify a table derived from one or more tables. | |
--/p | |
<from clause> ::= FROM <table reference list> | |
<table reference list> ::= <table reference> [ { <comma> <table reference> }... ] | |
--h3 7.6 <table reference> (p303) | |
--/h3 | |
--p | |
Reference a table. | |
--/p | |
<table reference> ::= <table primary or joined table> [ <sample clause> ] | |
<table primary or joined table> ::= <table primary> | <joined table> | |
<sample clause> ::= | |
TABLESAMPLE <sample method> <left paren> <sample percentage> <right paren> [ <repeatable clause> ] | |
<sample method> ::= BERNOULLI | SYSTEM | |
<repeatable clause> ::= REPEATABLE <left paren> <repeat argument> <right paren> | |
<sample percentage> ::= <numeric value expression> | |
<repeat argument> ::= <numeric value expression> | |
<table primary> ::= | |
<table or query name> [ [ AS ] <correlation name> [ <left paren> <derived column list> <right paren> ] ] | |
| <derived table> [ AS ] <correlation name> [ <left paren> <derived column list> <right paren> ] | |
| <lateral derived table> [ AS ] <correlation name> [ <left paren> <derived column list> <right paren> ] | |
| <collection derived table> [ AS ] <correlation name> [ <left paren> <derived column list> <right paren> ] | |
| <table function derived table> [ AS ] <correlation name> [ <left paren> <derived column list> <right paren> ] | |
| <only spec> [ [ AS ] <correlation name> [ <left paren> <derived column list> <right paren> ] ] | |
| <left paren> <joined table> <right paren> | |
<only spec> ::= ONLY <left paren> <table or query name> <right paren> | |
<lateral derived table> ::= LATERAL <table subquery> | |
<collection derived table> ::= UNNEST <left paren> <collection value expression> <right paren> [ WITH ORDINALITY ] | |
<table function derived table> ::= TABLE <left paren> <collection value expression> <right paren> | |
<derived table> ::= <table subquery> | |
<table or query name> ::= <table name> | <query name> | |
<derived column list> ::= <column name list> | |
<column name list> ::= <column name> [ { <comma> <column name> }... ] | |
--h3 7.7 <joined table> (p312) | |
--/h3 | |
--p | |
Specify a table derived from a Cartesian product, inner or outer join, or union join. | |
--/p | |
<joined table> ::= | |
<cross join> | |
| <qualified join> | |
| <natural join> | |
| <union join> | |
<cross join> ::= <table reference> CROSS JOIN <table primary> | |
<qualified join> ::= <table reference> [ <join type> ] JOIN <table reference> <join specification> | |
<natural join> ::= <table reference> NATURAL [ <join type> ] JOIN <table primary> | |
<union join> ::= <table reference> UNION JOIN <table primary> | |
<join specification> ::= <join condition> | <named columns join> | |
<join condition> ::= ON <search condition> | |
<named columns join> ::= USING <left paren> <join column list> <right paren> | |
<join type> ::= INNER | <outer join type> [ OUTER ] | |
<outer join type> ::= LEFT | RIGHT | FULL | |
<join column list> ::= <column name list> | |
--h3 7.8 <where clause> (p319) | |
--/h3 | |
--p | |
Specify a table derived by the application of a <search condition> to the result of the preceding | |
<from clause>. | |
--/p | |
<where clause> ::= WHERE <search condition> | |
--h3 7.9 <group by clause> (p320) | |
--/h3 | |
--p | |
Specify a grouped table derived by the application of the <group by clause> to the result of the | |
previously specified clause. | |
--/p | |
<group by clause> ::= GROUP BY [ <set quantifier> ] <grouping element list> | |
<grouping element list> ::= <grouping element> [ { <comma> <grouping element> }... ] | |
<grouping element> ::= | |
<ordinary grouping set> | |
| <rollup list> | |
| <cube list> | |
| <grouping sets specification> | |
| <empty grouping set> | |
<ordinary grouping set> ::= | |
<grouping column reference> | |
| <left paren> <grouping column reference list> <right paren> | |
<grouping column reference> ::= <column reference> [ <collate clause> ] | |
<grouping column reference list> ::= <grouping column reference> [ { <comma> <grouping column reference> }... ] | |
<rollup list> ::= ROLLUP <left paren> <ordinary grouping set list> <right paren> | |
<ordinary grouping set list> ::= <ordinary grouping set> [ { <comma> <ordinary grouping set> }... ] | |
<cube list> ::= CUBE <left paren> <ordinary grouping set list> <right paren> | |
<grouping sets specification> ::= GROUPING SETS <left paren> <grouping set list> <right paren> | |
<grouping set list> ::= <grouping set> [ { <comma> <grouping set> }... ] | |
<grouping set> ::= | |
<ordinary grouping set> | |
| <rollup list> | |
| <cube list> | |
| <grouping sets specification> | |
| <empty grouping set> | |
<empty grouping set> ::= <left paren> <right paren> | |
--h3 7.10 <having clause> (p329) | |
--/h3 | |
--p | |
Specify a grouped table derived by the elimination of groups that do not satisfy a <search condition>. | |
--/p | |
<having clause> ::= HAVING <search condition> | |
--h3 7.11 <window clause> (p331) | |
--/h3 | |
--p | |
Specify one or more window definitions. | |
--/p | |
<window clause> ::= WINDOW <window definition list> | |
<window definition list> ::= <window definition> [ { <comma> <window definition> }... ] | |
<window definition> ::= <new window name> AS <window specification> | |
<new window name> ::= <window name> | |
<window specification> ::= <left paren> <window specification details> <right paren> | |
<window specification details> ::= | |
[ <existing window name> ] [ <window partition clause> ] [ <window order clause> ] [ <window frame clause> ] | |
<existing window name> ::= <window name> | |
<window partition clause> ::= PARTITION BY <window partition column reference list> | |
<window partition column reference list> ::= <window partition column reference> [ { <comma> <window partition column reference> }... ] | |
<window partition column reference> ::= <column reference> [ <collate clause> ] | |
<window order clause> ::= ORDER BY <sort specification list> | |
<window frame clause> ::= <window frame units> <window frame extent> [ <window frame exclusion> ] | |
<window frame units> ::= ROWS | RANGE | |
<window frame extent> ::= <window frame start> | <window frame between> | |
<window frame start> ::= UNBOUNDED PRECEDING | <window frame preceding> | CURRENT ROW | |
<window frame preceding> ::= <unsigned value specification> PRECEDING | |
<window frame between> ::= BETWEEN <window frame bound 1> AND <window frame bound 2> | |
<window frame bound 1> ::= <window frame bound> | |
<window frame bound 2> ::= <window frame bound> | |
<window frame bound> ::= | |
<window frame start> | |
| UNBOUNDED FOLLOWING | |
| <window frame following> | |
<window frame following> ::= <unsigned value specification> FOLLOWING | |
<window frame exclusion> ::= | |
EXCLUDE CURRENT ROW | |
| EXCLUDE GROUP | |
| EXCLUDE TIES | |
| EXCLUDE NO OTHERS | |
--h3 7.12 <query specification> (p341) | |
--/h3 | |
--p | |
Specify a table derived from the result of a <table expression>. | |
--/p | |
<query specification> ::= SELECT [ <set quantifier> ] <select list> <table expression> | |
<select list> ::= <asterisk> | <select sublist> [ { <comma> <select sublist> }... ] | |
<select sublist> ::= <derived column> | <qualified asterisk> | |
<qualified asterisk> ::= | |
<asterisked identifier chain> <period> <asterisk> | |
| <all fields reference> | |
<asterisked identifier chain> ::= <asterisked identifier> [ { <period> <asterisked identifier> }... ] | |
<asterisked identifier> ::= <identifier> | |
<derived column> ::= <value expression> [ <as clause> ] | |
<as clause> ::= [ AS ] <column name> | |
<all fields reference> ::= <value expression primary> <period> <asterisk> [ AS <left paren> <all fields column name list> <right paren> ] | |
<all fields column name list> ::= <column name list> | |
--h3 7.13 <query expression> (p350) | |
--/h3 | |
--p | |
Specify a table. | |
--/p | |
<query expression> ::= [ <with clause> ] <query expression body> | |
<with clause> ::= WITH [ RECURSIVE ] <with list> | |
<with list> ::= <with list element> [ { <comma> <with list element> }... ] | |
<with list element> ::= | |
<query name> [ <left paren> <with column list> <right paren> ] | |
AS <left paren> <query expression> <right paren> [ <search or cycle clause> ] | |
<with column list> ::= <column name list> | |
<query expression body> ::= <non-join query expression> | <joined table> | |
<non-join query expression> ::= | |
<non-join query term> | |
| <query expression body> UNION [ ALL | DISTINCT ] [ <corresponding spec> ] <query term> | |
| <query expression body> EXCEPT [ ALL | DISTINCT ] [ <corresponding spec> ] <query term> | |
<query term> ::= <non-join query term> | <joined table> | |
<non-join query term> ::= | |
<non-join query primary> | |
| <query term> INTERSECT [ ALL | DISTINCT ] [ <corresponding spec> ] <query primary> | |
<query primary> ::= <non-join query primary> | <joined table> | |
<non-join query primary> ::= <simple table> | <left paren> <non-join query expression> <right paren> | |
<simple table> ::= | |
<query specification> | |
| <table value constructor> | |
| <explicit table> | |
<explicit table> ::= TABLE <table or query name> | |
<corresponding spec> ::= CORRESPONDING [ BY <left paren> <corresponding column list> <right paren> ] | |
<corresponding column list> ::= <column name list> | |
--h3 7.14 <search or cycle clause> (p363) | |
--/h3 | |
--p | |
Specify the generation of ordering and cycle detection information in the result of recursive query | |
expressions. | |
--/p | |
<search or cycle clause> ::= | |
<search clause> | |
| <cycle clause> | |
| <search clause> <cycle clause> | |
<search clause> ::= SEARCH <recursive search order> SET <sequence column> | |
<recursive search order> ::= | |
DEPTH FIRST BY <sort specification list> | |
| BREADTH FIRST BY <sort specification list> | |
<sequence column> ::= <column name> | |
<cycle clause> ::= | |
CYCLE <cycle column list> | |
SET <cycle mark column> TO <cycle mark value> | |
DEFAULT <non-cycle mark value> | |
USING <path column> | |
<cycle column list> ::= <cycle column> [ { <comma> <cycle column> }... ] | |
<cycle column> ::= <column name> | |
<cycle mark column> ::= <column name> | |
<path column> ::= <column name> | |
<cycle mark value> ::= <value expression> | |
<non-cycle mark value> ::= <value expression> | |
--h3 7.15 <subquery> (p368) | |
--/h3 | |
--p | |
Specify a scalar value, a row, or a table derived from a <query expression>. | |
--/p | |
<scalar subquery> ::= <subquery> | |
<row subquery> ::= <subquery> | |
<table subquery> ::= <subquery> | |
<subquery> ::= <left paren> <query expression> <right paren> | |
--hr | |
--h2 8 Predicates | |
--/h2 | |
--h3 8.1 <predicate> (p371) | |
--/h3 | |
--p | |
Specify a condition that can be evaluated to give a boolean value. | |
--/p | |
<predicate> ::= | |
<comparison predicate> | |
| <between predicate> | |
| <in predicate> | |
| <like predicate> | |
| <similar predicate> | |
| <null predicate> | |
| <quantified comparison predicate> | |
| <exists predicate> | |
| <unique predicate> | |
| <normalized predicate> | |
| <match predicate> | |
| <overlaps predicate> | |
| <distinct predicate> | |
| <member predicate> | |
| <submultiset predicate> | |
| <set predicate> | |
| <type predicate> | |
--h3 8.2 <comparison predicate> (p373) | |
--/h3 | |
--p | |
Specify a comparison of two row values. | |
--/p | |
<comparison predicate> ::= <row value predicand> <comparison predicate part 2> | |
<comparison predicate part 2> ::= <comp op> <row value predicand> | |
<comp op> ::= | |
<equals operator> | |
| <not equals operator> | |
| <less than operator> | |
| <greater than operator> | |
| <less than or equals operator> | |
| <greater than or equals operator> | |
--h3 8.3 <between predicate> (p380) | |
--/h3 | |
--p | |
Specify a range comparison. | |
--/p | |
<between predicate> ::= <row value predicand> <between predicate part 2> | |
<between predicate part 2> ::= [ NOT ] BETWEEN [ ASYMMETRIC | SYMMETRIC ] <row value predicand> AND <row value predicand> | |
--h3 8.4 <in predicate> (p381) | |
--/h3 | |
--p | |
Specify a quantified comparison. | |
--/p | |
<in predicate> ::= <row value predicand> <in predicate part 2> | |
<in predicate part 2> ::= [ NOT ] IN <in predicate value> | |
<in predicate value> ::= | |
<table subquery> | |
| <left paren> <in value list> <right paren> | |
<in value list> ::= <row value expression> [ { <comma> <row value expression> }... ] | |
--h3 8.5 <like predicate> (p383) | |
--/h3 | |
--p | |
Specify a pattern-match comparison. | |
--/p | |
<like predicate> ::= <character like predicate> | <octet like predicate> | |
<character like predicate> ::= <row value predicand> <character like predicate part 2> | |
<character like predicate part 2> ::= [ NOT ] LIKE <character pattern> [ ESCAPE <escape character> ] | |
<character pattern> ::= <character value expression> | |
<escape character> ::= <character value expression> | |
<octet like predicate> ::= <row value predicand> <octet like predicate part 2> | |
<octet like predicate part 2> ::= [ NOT ] LIKE <octet pattern> [ ESCAPE <escape octet> ] | |
<octet pattern> ::= <blob value expression> | |
<escape octet> ::= <blob value expression> | |
--h3 8.6 <similar predicate> (p389) | |
--/h3 | |
--p | |
Specify a character string similarity by means of a regular expression. | |
--/p | |
<similar predicate> ::= <row value predicand> <similar predicate part 2> | |
<similar predicate part 2> ::= [ NOT ] SIMILAR TO <similar pattern> [ ESCAPE <escape character> ] | |
<similar pattern> ::= <character value expression> | |
<regular expression> ::= | |
<regular term> | |
| <regular expression> <vertical bar> <regular term> | |
<regular term> ::= | |
<regular factor> | |
| <regular term> <regular factor> | |
<regular factor> ::= | |
<regular primary> | |
| <regular primary> <asterisk> | |
| <regular primary> <plus sign> | |
| <regular primary> <question mark> | |
| <regular primary> <repeat factor> | |
<repeat factor> ::= <left brace> <low value> [ <upper limit> ] <right brace> | |
<upper limit> ::= <comma> [ <high value> ] | |
<low value> ::= <unsigned integer> | |
<high value> ::= <unsigned integer> | |
<regular primary> ::= | |
<character specifier> | |
| <percent> | |
| <regular character set> | |
| <left paren> <regular expression> <right paren> | |
<character specifier> ::= <non-escaped character> | <escaped character> | |
<non-escaped character> ::= !! See the Syntax Rules. | |
<escaped character> ::= !! See the Syntax Rules. | |
<regular character set> ::= | |
<underscore> | |
| <left bracket> <character enumeration>... <right bracket> | |
| <left bracket> <circumflex> <character enumeration>... <right bracket> | |
| <left bracket> <character enumeration include>... <circumflex> <character enumeration exclude>... <right bracket> | |
<character enumeration include> ::= <character enumeration> | |
<character enumeration exclude> ::= <character enumeration> | |
<character enumeration> ::= | |
<character specifier> | |
| <character specifier> <minus sign> <character specifier> | |
| <left bracket> <colon> <regular character set identifier> <colon> <right bracket> | |
<regular character set identifier> ::= <identifier> | |
--h3 8.7 <null predicate> (p395) | |
--/h3 | |
--p | |
Specify a test for a null value. | |
--/p | |
<null predicate> ::= <row value predicand> <null predicate part 2> | |
<null predicate part 2> ::= IS [ NOT ] NULL | |
--h3 8.8 <quantified comparison predicate> (p397) | |
--/h3 | |
--p | |
Specify a quantified comparison. | |
--/p | |
<quantified comparison predicate> ::= <row value predicand> <quantified comparison predicate part 2> | |
<quantified comparison predicate part 2> ::= <comp op> <quantifier> <table subquery> | |
<quantifier> ::= <all> | <some> | |
<all> ::= ALL | |
<some> ::= SOME | ANY | |
--h3 8.9 <exists predicate> (p399) | |
--/h3 | |
--p | |
Specify a test for a non-empty set. | |
--/p | |
<exists predicate> ::= EXISTS <table subquery> | |
--h3 8.10 <unique predicate> (p400) | |
--/h3 | |
--p | |
Specify a test for the absence of duplicate rows | |
--/p | |
<unique predicate> ::= UNIQUE <table subquery> | |
--h3 8.11 <normalized predicate> (p401) | |
--/h3 | |
--p | |
Determine whether a character string value is normalized. | |
--/p | |
<normalized predicate> ::= <string value expression> IS [ NOT ] NORMALIZED | |
--h3 8.12 <match predicate> (p402) | |
--/h3 | |
--p | |
Specify a test for matching rows. | |
--/p | |
<match predicate> ::= <row value predicand> <match predicate part 2> | |
<match predicate part 2> ::= MATCH [ UNIQUE ] [ SIMPLE | PARTIAL | FULL ] <table subquery> | |
--h3 8.13 <overlaps predicate> (p405) | |
--/h3 | |
--p | |
Specify a test for an overlap between two datetime periods. | |
--/p | |
<overlaps predicate> ::= <overlaps predicate part 1> <overlaps predicate part 2> | |
<overlaps predicate part 1> ::= <row value predicand 1> | |
<overlaps predicate part 2> ::= OVERLAPS <row value predicand 2> | |
<row value predicand 1> ::= <row value predicand> | |
<row value predicand 2> ::= <row value predicand> | |
--h3 8.14 <distinct predicate> (p407) | |
--/h3 | |
--p | |
Specify a test of whether two row values are distinct | |
--/p | |
<distinct predicate> ::= <row value predicand 3> <distinct predicate part 2> | |
<distinct predicate part 2> ::= IS DISTINCT FROM <row value predicand 4> | |
<row value predicand 3> ::= <row value predicand> | |
<row value predicand 4> ::= <row value predicand> | |
--h3 8.15 <member predicate> (p409) | |
--/h3 | |
--p | |
Specify a test of whether a value is a member of a multiset. | |
--/p | |
<member predicate> ::= <row value predicand> <member predicate part 2> | |
<member predicate part 2> ::= [ NOT ] MEMBER [ OF ] <multiset value expression> | |
--h3 8.16 <submultiset predicate> (p411) | |
--/h3 | |
--p | |
Specify a test of whether a multiset is a submultiset of another multiset. | |
--/p | |
<submultiset predicate> ::= <row value predicand> <submultiset predicate part 2> | |
<submultiset predicate part 2> ::= [ NOT ] SUBMULTISET [ OF ] <multiset value expression> | |
--h3 8.17 <set predicate> (p413) | |
--/h3 | |
--p | |
Specify a test of whether a multiset is a set (that is, does not contain any duplicates). | |
--/p | |
<set predicate> ::= <row value predicand> <set predicate part 2> | |
<set predicate part 2> ::= IS [ NOT ] A SET | |
--h3 8.18 <type predicate> (p414) | |
--/h3 | |
--p | |
Specify a type test. | |
--/p | |
<type predicate> ::= <row value predicand> <type predicate part 2> | |
<type predicate part 2> ::= IS [ NOT ] OF <left paren> <type list> <right paren> | |
<type list> ::= <user-defined type specification> [ { <comma> <user-defined type specification> }... ] | |
<user-defined type specification> ::= | |
<inclusive user-defined type specification> | |
| <exclusive user-defined type specification> | |
<inclusive user-defined type specification> ::= <path-resolved user-defined type name> | |
<exclusive user-defined type specification> ::= ONLY <path-resolved user-defined type name> | |
--h3 8.19 <search condition> (p416) | |
--/h3 | |
--p | |
Specify a condition that is True , False , or Unknown , depending on the value of a <boolean value | |
expression>. | |
--/p | |
<search condition> ::= <boolean value expression> | |
--hr | |
--h2 9 Additional common rules | |
--/h2 | |
--h3 9.1 Retrieval assignment (p417) | |
--/h3 | |
--h3 9.2 Store assignment (p422) | |
--/h3 | |
--h3 9.3 Data types of results of aggregations (p427) | |
--/h3 | |
--h3 9.4 Subject routine determination (p430) | |
--/h3 | |
--h3 9.5 Type precedence list determination (p431) | |
--/h3 | |
--h3 9.6 Host parameter mode determination (p434) | |
--/h3 | |
--h3 9.7 Type name determination (p436) | |
--/h3 | |
--h3 9.8 Determination of identical values (p438) | |
--/h3 | |
--h3 9.9 Equality operations (p440) | |
--/h3 | |
--h3 9.10 Grouping operations (p443) | |
--/h3 | |
--h3 9.11 Multiset element grouping operations (p445) | |
--/h3 | |
--h3 9.12 Ordering operations (p447) | |
--/h3 | |
--h3 9.13 Collation determination (p449) | |
--/h3 | |
--h3 9.14 Execution of array-returning functions (p450) | |
--/h3 | |
--h3 9.15 Execution of multiset-returning functions (p453) | |
--/h3 | |
--h3 9.16 Data type identity (p454) | |
--/h3 | |
--h3 9.17 Determination of a from-sql function (p456) | |
--/h3 | |
--h3 9.18 Determination of a from-sql function for an overriding method (p457) | |
--/h3 | |
--h3 9.19 Determination of a to-sql function (p458) | |
--/h3 | |
--h3 9.20 Determination of a to-sql function for an overriding method (p459) | |
--/h3 | |
--h3 9.21 Generation of the next value of a sequence generator (p460) | |
--/h3 | |
--h3 9.22 Creation of a sequence generator (p461) | |
--/h3 | |
--h3 9.23 Altering a sequence generator (p463) | |
--/h3 | |
--hr | |
--h2 10 Additional common elements | |
--/h2 | |
--h3 10.1 <interval qualifier> (p465) | |
--/h3 | |
--p | |
Specify the precision of an interval data type. | |
--/p | |
<interval qualifier> ::= | |
<start field> TO <end field> | |
| <single datetime field> | |
<start field> ::= <non-second primary datetime field> [ <left paren> <interval leading field precision> <right paren> ] | |
<end field> ::= | |
<non-second primary datetime field> | |
| SECOND [ <left paren> <interval fractional seconds precision> <right paren> ] | |
<single datetime field> ::= | |
<non-second primary datetime field> [ <left paren> <interval leading field precision> <right paren> ] | |
| SECOND [ <left paren> <interval leading field precision> [ <comma> <interval fractional seconds precision> ] <right paren> ] | |
<primary datetime field> ::= | |
<non-second primary datetime field> | |
| SECOND | |
<non-second primary datetime field> ::= YEAR | MONTH | DAY | HOUR | MINUTE | |
<interval fractional seconds precision> ::= <unsigned integer> | |
<interval leading field precision> ::= <unsigned integer> | |
--h3 10.2 <language clause> (p469) | |
--/h3 | |
--p | |
Specify a standard programming language. | |
--/p | |
<language clause> ::= LANGUAGE <language name> | |
<language name> ::= ADA | C | COBOL | FORTRAN | MUMPS | PASCAL | PLI | SQL | |
--p | |
Table 14 -- Standard programming languages | |
--/p | |
--## <table border=1> | |
--## <tr> <th> Language keyword </th> <th> Relevant standard </th> </tr> | |
--## <tr><td>ADA</td><td>ISO/IEC 8652</td></tr> | |
--## <tr><td>C</td><td>ISO/IEC 9899</td></tr> | |
--## <tr><td>COBOL</td><td>ISO 1989</td></tr> | |
--## <tr><td>FORTRAN</td><td>ISO 1539</td></tr> | |
--## <tr><td>MUMPS</td><td>ISO/IEC 11756</td></tr> | |
--## <tr><td>PASCAL</td><td>ISO/IEC 7185 and ISO/IEC 10206</td></tr> | |
--## <tr><td>PLI</td><td>ISO 6160</td></tr> | |
--## <tr><td>SQL</td><td>ISO/IEC 9075</td></tr> | |
--## </table> | |
--h3 10.3 <path specification> (p471) | |
--/h3 | |
--p | |
Specify an order for searching for an SQL-invoked routine. | |
--/p | |
<path specification> ::= PATH <schema name list> | |
<schema name list> ::= <schema name> [ { <comma> <schema name> }... ] | |
--h3 10.4 <routine invocation> (p472) | |
--/h3 | |
--p | |
Invoke an SQL-invoked routine. | |
--/p | |
<routine invocation> ::= <routine name> <SQL argument list> | |
<routine name> ::= [ <schema name> <period> ] <qualified identifier> | |
<SQL argument list> ::= <left paren> [ <SQL argument> [ { <comma> <SQL argument> }... ] ] <right paren> | |
<SQL argument> ::= | |
<value expression> | |
| <generalized expression> | |
| <target specification> | |
<generalized expression> ::= <value expression> AS <path-resolved user-defined type name> | |
--h3 10.5 <character set specification> (p495) | |
--/h3 | |
--p | |
Identify a character set. | |
--/p | |
<character set specification> ::= | |
<standard character set name> | |
| <implementation-defined character set name> | |
| <user-defined character set name> | |
<standard character set name> ::= <character set name> | |
<implementation-defined character set name> ::= <character set name> | |
<user-defined character set name> ::= <character set name> | |
--h3 10.6 <specific routine designator> (p497) | |
--/h3 | |
--p | |
Specify an SQL-invoked routine. | |
--/p | |
<specific routine designator> ::= | |
SPECIFIC <routine type> <specific name> | |
| <routine type> <member name> | |
[ FOR <schema-resolved user-defined type name> ] | |
<routine type> ::= | |
ROUTINE | |
| FUNCTION | |
| PROCEDURE | |
| [ INSTANCE | STATIC | CONSTRUCTOR ] METHOD | |
<member name> ::= <member name alternatives> [ <data type list> ] | |
<member name alternatives> ::= <schema qualified routine name> | <method name> | |
<data type list> ::= <left paren> [ <data type> [ { <comma> <data type> }... ] ] <right paren> | |
--h3 10.7 <collate clause> (p500) | |
--/h3 | |
--p | |
Specify a default collating sequence. | |
--/p | |
<collate clause> ::= COLLATE <collation name> | |
--h3 10.8 <constraint name definition> and <constraint characteristics> (p501) | |
--/h3 | |
--p | |
Specify the name of a constraint and its characteristics. | |
--/p | |
<constraint name definition> ::= CONSTRAINT <constraint name> | |
<constraint characteristics> ::= | |
<constraint check time> [ [ NOT ] DEFERRABLE ] | |
| [ NOT ] DEFERRABLE [ <constraint check time> ] | |
<constraint check time> ::= INITIALLY DEFERRED | INITIALLY IMMEDIATE | |
--h3 10.9 <aggregate function> (p503) | |
--/h3 | |
--p | |
Specify a value computed from a collection of rows. | |
--/p | |
<aggregate function> ::= | |
COUNT <left paren> <asterisk> <right paren> [ <filter clause> ] | |
| <general set function> [ <filter clause> ] | |
| <binary set function> [ <filter clause> ] | |
| <ordered set function> [ <filter clause> ] | |
<general set function> ::= <set function type> <left paren> [ <set quantifier> ] <value expression> <right paren> | |
<set function type> ::= <computational operation> | |
<computational operation> ::= | |
AVG | MAX | MIN | SUM | |
| EVERY | ANY | SOME | |
| COUNT | |
| STDDEV_POP | STDDEV_SAMP | VAR_SAMP | VAR_POP | |
| COLLECT | FUSION | INTERSECTION | |
<set quantifier> ::= DISTINCT | ALL | |
<filter clause> ::= FILTER <left paren> WHERE <search condition> <right paren> | |
<binary set function> ::= <binary set function type> <left paren> <dependent variable expression> <comma> <independent variable expression> <right paren> | |
<binary set function type> ::= | |
COVAR_POP | COVAR_SAMP | CORR | REGR_SLOPE | |
| REGR_INTERCEPT | REGR_COUNT | REGR_R2 | REGR_AVGX | REGR_AVGY | |
| REGR_SXX | REGR_SYY | REGR_SXY | |
<dependent variable expression> ::= <numeric value expression> | |
<independent variable expression> ::= <numeric value expression> | |
<ordered set function> ::= <hypothetical set function> | <inverse distribution function> | |
<hypothetical set function> ::= <rank function type> <left paren> <hypothetical set function value expression list> <right paren> <within group specification> | |
<within group specification> ::= WITHIN GROUP <left paren> ORDER BY <sort specification list> <right paren> | |
<hypothetical set function value expression list> ::= <value expression> [ { <comma> <value expression> }... ] | |
<inverse distribution function> ::= <inverse distribution function type> <left paren> <inverse distribution function argument> <right paren> <within group specification> | |
<inverse distribution function argument> ::= <numeric value expression> | |
<inverse distribution function type> ::= PERCENTILE_CONT | PERCENTILE_DISC | |
--h3 10.10 <sort specification list> (p515) | |
--/h3 | |
--p | |
Specify a sort order. | |
--/p | |
<sort specification list> ::= <sort specification> [ { <comma> <sort specification> }... ] | |
<sort specification> ::= <sort key> [ <ordering specification> ] [ <null ordering> ] | |
<sort key> ::= <value expression> | |
<ordering specification> ::= ASC | DESC | |
<null ordering> ::= NULLS FIRST | NULLS LAST | |
--hr | |
--h2 11 Schema definition and manipulation | |
--/h2 | |
--h3 11.1 <schema definition> (p517) | |
--/h3 | |
--p | |
Define a schema. | |
--/p | |
<schema definition> ::= CREATE SCHEMA <schema name clause> [ <schema character set or path> ] [ <schema element>... ] | |
<schema character set or path> ::= | |
<schema character set specification> | |
| <schema path specification> | |
| <schema character set specification> <schema path specification> | |
| <schema path specification> <schema character set specification> | |
<schema name clause> ::= | |
<schema name> | |
| AUTHORIZATION <schema authorization identifier> | |
| <schema name> AUTHORIZATION <schema authorization identifier> | |
<schema authorization identifier> ::= <authorization identifier> | |
<schema character set specification> ::= DEFAULT CHARACTER SET <character set specification> | |
<schema path specification> ::= <path specification> | |
<schema element> ::= | |
<table definition> | |
| <view definition> | |
| <domain definition> | |
| <character set definition> | |
| <collation definition> | |
| <transliteration definition> | |
| <assertion definition> | |
| <trigger definition> | |
| <user-defined type definition> | |
| <user-defined cast definition> | |
| <user-defined ordering definition> | |
| <transform definition> | |
| <schema routine> | |
| <sequence generator definition> | |
| <grant statement> | |
| <role definition> | |
--h3 11.2 <drop schema statement> (p520) | |
--/h3 | |
--p | |
Destroy a schema. | |
--/p | |
<drop schema statement> ::= DROP SCHEMA <schema name> <drop behavior> | |
<drop behavior> ::= CASCADE | RESTRICT | |
--h3 11.3 <table definition> (p523) | |
--/h3 | |
--p | |
Define a persistent base table, a created local temporary table, or a global temporary table. | |
--/p | |
<table definition> ::= | |
CREATE [ <table scope> ] TABLE <table name> <table contents source> | |
[ ON COMMIT <table commit action> ROWS ] | |
<table contents source> ::= | |
<table element list> | |
| OF <path-resolved user-defined type name> [ <subtable clause> ] [ <table element list> ] | |
| <as subquery clause> | |
<table scope> ::= <global or local> TEMPORARY | |
<global or local> ::= GLOBAL | LOCAL | |
<table commit action> ::= PRESERVE | DELETE | |
<table element list> ::= <left paren> <table element> [ { <comma> <table element> }... ] <right paren> | |
<table element> ::= | |
<column definition> | |
| <table constraint definition> | |
| <like clause> | |
| <self-referencing column specification> | |
| <column options> | |
<self-referencing column specification> ::= REF IS <self-referencing column name> <reference generation> | |
<reference generation> ::= SYSTEM GENERATED | USER GENERATED | DERIVED | |
<self-referencing column name> ::= <column name> | |
<column options> ::= <column name> WITH OPTIONS <column option list> | |
<column option list> ::= [ <scope clause> ] [ <default clause> ] [ <column constraint definition>... ] | |
<subtable clause> ::= UNDER <supertable clause> | |
<supertable clause> ::= <supertable name> | |
<supertable name> ::= <table name> | |
<like clause> ::= LIKE <table name> [ <like options> ] | |
<like options> ::= <identity option> | <column default option> | |
<identity option> ::= INCLUDING IDENTITY | EXCLUDING IDENTITY | |
<column default option> ::= INCLUDING DEFAULTS | EXCLUDING DEFAULTS | |
<as subquery clause> ::= [ <left paren> <column name list> <right paren> ] AS <subquery> <with or without data> | |
<with or without data> ::= WITH NO DATA | WITH DATA | |
--h3 11.4 <column definition> (p534) | |
--/h3 | |
--p | |
Define a column of a base table. | |
--/p | |
<column definition> ::= | |
<column name> [ <data type> | <domain name> ] [ <reference scope check> ] | |
[ <default clause> | <identity column specification> | <generation clause> ] | |
[ <column constraint definition>... ] [ <collate clause> ] | |
<column constraint definition> ::= [ <constraint name definition> ] <column constraint> [ <constraint characteristics> ] | |
<column constraint> ::= | |
NOT NULL | |
| <unique specification> | |
| <references specification> | |
| <check constraint definition> | |
<reference scope check> ::= REFERENCES ARE [ NOT ] CHECKED [ ON DELETE <reference scope check action> ] | |
<reference scope check action> ::= <referential action> | |
<identity column specification> ::= | |
GENERATED { ALWAYS | BY DEFAULT } AS IDENTITY | |
[ <left paren> <common sequence generator options> <right paren> ] | |
<generation clause> ::= <generation rule> AS <generation expression> | |
<generation rule> ::= GENERATED ALWAYS | |
<generation expression> ::= <left paren> <value expression> <right paren> | |
--h3 11.5 <default clause> (p539) | |
--/h3 | |
--p | |
Specify the default for a column, domain, or attribute. | |
--/p | |
<default clause> ::= DEFAULT <default option> | |
<default option> ::= | |
<literal> | |
| <datetime value function> | |
| USER | |
| CURRENT_USER | |
| CURRENT_ROLE | |
| SESSION_USER | |
| SYSTEM_USER | |
| CURRENT_PATH | |
| <implicitly typed value specification> | |
--h3 11.6 <table constraint definition> (p543) | |
--/h3 | |
--p | |
Specify an integrity constraint. | |
--/p | |
<table constraint definition> ::= [ <constraint name definition> ] <table constraint> [ <constraint characteristics> ] | |
<table constraint> ::= | |
<unique constraint definition> | |
| <referential constraint definition> | |
| <check constraint definition> | |
--h3 11.7 <unique constraint definition> (p545) | |
--/h3 | |
--p | |
Specify a uniqueness constraint for a table. | |
--/p | |
<unique constraint definition> ::= | |
<unique specification> <left paren> <unique column list> <right paren> | |
| UNIQUE ( VALUE ) | |
<unique specification> ::= UNIQUE | PRIMARY KEY | |
<unique column list> ::= <column name list> | |
--h3 11.8 <referential constraint definition> (p547) | |
--/h3 | |
--p | |
Specify a referential constraint. | |
--/p | |
<referential constraint definition> ::= FOREIGN KEY <left paren> <referencing columns> <right paren> <references specification> | |
<references specification> ::= REFERENCES <referenced table and columns> [ MATCH <match type> ] [ <referential triggered action> ] | |
<match type> ::= FULL | PARTIAL | SIMPLE | |
<referencing columns> ::= <reference column list> | |
<referenced table and columns> ::= <table name> [ <left paren> <reference column list> <right paren> ] | |
<reference column list> ::= <column name list> | |
<referential triggered action> ::= <update rule> [ <delete rule> ] | <delete rule> [ <update rule> ] | |
<update rule> ::= ON UPDATE <referential action> | |
<delete rule> ::= ON DELETE <referential action> | |
<referential action> ::= CASCADE | SET NULL | SET DEFAULT | RESTRICT | NO ACTION | |
--h3 11.9 <check constraint definition> (p567) | |
--/h3 | |
--p | |
Specify a condition for the SQL-data. | |
--/p | |
<check constraint definition> ::= CHECK <left paren> <search condition> <right paren> | |
--h3 11.10 <alter table statement> (p569) | |
--/h3 | |
--p | |
Change the definition of a table. | |
--/p | |
<alter table statement> ::= ALTER TABLE <table name> <alter table action> | |
<alter table action> ::= | |
<add column definition> | |
| <alter column definition> | |
| <drop column definition> | |
| <add table constraint definition> | |
| <drop table constraint definition> | |
--h3 11.11 <add column definition> (p570) | |
--/h3 | |
--p | |
Add a column to a table. | |
--/p | |
<add column definition> ::= ADD [ COLUMN ] <column definition> | |
--h3 11.12 <alter column definition> (p572) | |
--/h3 | |
--p | |
Change a column and its definition. | |
--/p | |
<alter column definition> ::= ALTER [ COLUMN ] <column name> <alter column action> | |
<alter column action> ::= | |
<set column default clause> | |
| <drop column default clause> | |
| <add column scope clause> | |
| <drop column scope clause> | |
| <alter identity column specification> | |
--h3 11.13 <set column default clause> (p573) | |
--/h3 | |
--p | |
Set the default clause for a column. | |
--/p | |
<set column default clause> ::= SET <default clause> | |
--h3 11.14 <drop column default clause> (p574) | |
--/h3 | |
--p | |
Drop the default clause from a column. | |
--/p | |
<drop column default clause> ::= DROP DEFAULT | |
--h3 11.15 <add column scope clause> (p575) | |
--/h3 | |
--p | |
Add a non-empty scope for an existing column of data type REF in a base table. | |
--/p | |
<add column scope clause> ::= ADD <scope clause> | |
--h3 11.16 <drop column scope clause> (p576) | |
--/h3 | |
--p | |
Drop the scope from an existing column of data type REF in a base table. | |
--/p | |
<drop column scope clause> ::= DROP SCOPE <drop behavior> | |
--h3 11.17 <alter identity column specification> (p578) | |
--/h3 | |
--p | |
Change the options specified for an identity column. | |
--/p | |
<alter identity column specification> ::= <alter identity column option>... | |
<alter identity column option> ::= | |
<alter sequence generator restart option> | |
| SET <basic sequence generator option> | |
--h3 11.18 <drop column definition> (p579) | |
--/h3 | |
--p | |
Destroy a column of a base table. | |
--/p | |
<drop column definition> ::= DROP [ COLUMN ] <column name> <drop behavior> | |
--h3 11.19 <add table constraint definition> (p581) | |
--/h3 | |
--p | |
Add a constraint to a table. | |
--/p | |
<add table constraint definition> ::= ADD <table constraint definition> | |
--h3 11.20 <drop table constraint definition> (p582) | |
--/h3 | |
--p | |
Destroy a constraint on a table. | |
--/p | |
<drop table constraint definition> ::= DROP CONSTRAINT <constraint name> <drop behavior> | |
--h3 11.21 <drop table statement> (p585) | |
--/h3 | |
--p | |
Destroy a table. | |
--/p | |
<drop table statement> ::= DROP TABLE <table name> <drop behavior> | |
--h3 11.22 <view definition> (p588) | |
--/h3 | |
--p | |
Define a viewed table. | |
--/p | |
<view definition> ::= | |
CREATE [ RECURSIVE ] VIEW <table name> <view specification> AS <query expression> | |
[ WITH [ <levels clause> ] CHECK OPTION ] | |
<view specification> ::= <regular view specification> | <referenceable view specification> | |
<regular view specification> ::= [ <left paren> <view column list> <right paren> ] | |
<referenceable view specification> ::= OF <path-resolved user-defined type name> [ <subview clause> ] [ <view element list> ] | |
<subview clause> ::= UNDER <table name> | |
<view element list> ::= <left paren> <view element> [ { <comma> <view element> }... ] <right paren> | |