SQL Syntax A description of the general syntax of SQL. Lexical Structure SQL input consists of a sequence of commands. A command is composed of a sequence of tokens, which depend on the syntax of the particular command, terminated by a semicolon (;). The end of the input stream also terminates a command. A token can be a key word, an identifier, a quoted identifier, a literal (or constant), or a special character symbol. Tokens are normally separated by whitespace (space, tab, newline), but need not be if there is no ambiguity (which is generally only the case if a special character is adjacent to some other token type). Additionally, comments can occur in SQL input. They are not tokens, they are effectively equivalent to whitespace. For example, the following is (lexically) valid SQL input: SELECT * FROM MY_TABLE; UPDATE MY_TABLE SET A = 5; INSERT INTO MY_TABLE VALUES (3, 'hi there'); This is a sequence of three commands, one per line (although this is not required; more than one command can be on a line, and commands can be usefully split across lines). The SQL syntax is not very consistent regarding what tokens identify commands and which are operands or parameters. The first few tokens are generally the command name, so in the above example we would usually speak of a SELECT, an UPDATE, and an INSERT command. But for instance the UPDATE command always requires a SET token to appear in a certain position, and this particular variation of INSERT also requires a VALUES in order to be complete. The precise syntax rules for each command are described in the Reference Manual. Identifiers and Key Words Tokens such as SELECT, UPDATE, or VALUES in the example above are examples of key words, that is, words that have a fixed meaning in the SQL language. The tokens MY_TABLE and A are examples of identifiers. They identify names of tables, columns, or other database objects, depending on the command they are used in. Therefore they are sometimes simply called names. Key words and identifiers have the same lexical structure, meaning that one cannot know whether a token is an identifier or a key word without knowing the language. A complete list of key words can be found in . SQL identifiers and key words must begin with a letter (a-z) or underscore (_). Subsequent characters in an identifier or key word can be letters, digits (0-9), or underscores, although the SQL standard will not define a key word that contains digits or start or ends with an underscore. The system uses no more than NAMEDATALEN-1 characters of an identifier; longer names can be written in commands, but they will be truncated. By default, NAMEDATALEN is 32 so the maximum identifier length is 31 (but at the time the system is built, NAMEDATALEN can be changed in src/include/postgres_ext.h). Identifier and key word names are case insensitive. Therefore UPDATE MY_TABLE SET A = 5; can equivalently be written as uPDaTE my_TabLE SeT a = 5; A good convention to adopt is perhaps to write key words in upper case and names in lower case, e.g., UPDATE my_table SET a = 5; There is a second kind of identifier: the delimited identifier or quoted identifier. It is formed by enclosing an arbitrary sequence of characters in double-quotes ("). A delimited identifier is always an identifier, never a key word. So "select" could be used to refer to a column or table named select, whereas an unquoted select would be taken as part of a command and would therefore provoke a parse error when used where a table or column name is expected. The example can be written with quoted identifiers like so: UPDATE "my_table" SET "a" = 5; Quoted identifiers can contain any character other than a double quote itself. This allows constructing table or column names that would otherwise not be possible, such as ones containing spaces or ampersands. The length limitation still applies. Quoting an identifier also makes it case-sensitive, whereas unquoted names are always folded to lower case. For example, the identifiers FOO, foo and "foo" are considered the same by Postgres, but "Foo" and "FOO" are different from these three and each other. This is incompatible with SQL, where unquoted names are folded to upper case. Thus, foo is equivalent to "FOO". If you want to write portable applications you are advised to always quote a particular name or never quote it. Constants There are four kinds of implicitly typed constants in Postgres: strings, bit strings, integers, and floating point numbers. Constants can also be specified with explicit types, which can enable more accurate representation and more efficient handling by the system. The implicit constants are described below; explicit constants are discussed afterwards. String Constants A string constant in SQL is an arbitrary sequence of characters bounded by single quotes ('), e.g., 'This is a string'. SQL allows single quotes to be embedded in strings by typing two adjacent single quotes (e.g., 'Dianne''s horse'). In Postgres single quotes may alternatively be escaped with a backslash (\, e.g., 'Dianne\'s horse'). C-style backslash escapes are also available: \b is a backspace, \f is a form feed, \n is a newline, \r is a carriage return, \t is a tab, and \xxx, where xxx is an octal number, is the character with the corresponding ASCII code. Any other character following a backslash is taken literally. Thus, to include a backslash in a string constant, type two backslashes. The character with the code zero cannot be in a string constant. Two string constants that are only separated by whitespace with at least one newline are concatenated and effectively treated as if the string had been written in one constant. For example: SELECT 'foo' 'bar'; is equivalent to SELECT 'foobar'; but SELECT 'foo' 'bar'; is not valid syntax. Bit String Constants Bit string constants look like string constants with a B (upper or lower case) immediately before the opening quote (no intervening whitespace), e.g., B'1001'. The only characters allowed within bit string constants are 0 and 1. Bit strings constants can be continued across lines in the same way as regular string constants. Integer Constants Integer constants in SQL are sequences of decimal digits (0 though 9) with no decimal point. The range of legal values depends on which integer data type is used, but the plain integer type accepts values ranging from -2147483648 to +2147483647. (The optional plus or minus sign is actually a separate unary operator and not part of the integer constant.) Floating Point Constants Floating point constants are accepted in these general forms: digits.digitse+-digits digits.digitse+-digits digitse+-digits where digits is one or more decimal digits. At least one digit must be before or after the decimal point and after the e if you use that option. Thus, a floating point constant is distinguished from an integer constant by the presence of either the decimal point or the exponent clause (or both). There must not be a space or other characters embedded in the constant. These are some examples of valid floating point constants: 3.5 4. .001 5e2 1.925e-3 Floating point constants are of type DOUBLE PRECISION. REAL can be specified explicitly by using SQL string notation or Postgres type notation: REAL '1.23' -- string style '1.23'::REAL -- Postgres (historical) style Constants of Other Types A constant of an arbitrary type can be entered using any one of the following notations: type 'string' 'string'::type CAST ( 'string' AS type ) The value inside the string is passed to the input conversion routine for the type called type. The result is a constant of the indicated type. The explicit type cast may be omitted if there is no ambiguity as to the type the constant must be (for example, when it is passed as an argument to a non-overloaded function), in which case it is automatically coerced. It is also possible to specify a type coercion using a function-like syntax: typename ( value ) although this only works for types whose names are also valid as function names. (For example, double precision can't be used this way --- but the equivalent float8 can.) The ::, CAST(), and function-call syntaxes can also be used to specify the type of arbitrary expressions, but the form type 'string' can only be used to specify the type of a literal constant. Array constants The general format of an array constant is the following: '{ val1 delim val2 delim ... }' where delim is the delimiter character for the type, as recorded in its pg_type entry. (For all built-in types, this is the comma character ",".) Each val is either a constant of the array element type, or a sub-array. An example of an array constant is '{{1,2,3},{4,5,6},{7,8,9}}' This constant is a two-dimensional, 3 by 3 array consisting of three sub-arrays of integers. Individual array elements can be placed between double-quote marks (") to avoid ambiguity problems with respect to white space. Without quote marks, the array-value parser will skip leading white space. (Array constants are actually only a special case of the generic type constants discussed in the previous section. The constant is initially treated as a string and passed to the array input conversion routine. An explicit type specification might be necessary.) Operators An operator is a sequence of up to NAMEDATALEN-1 (31 by default) characters from the following list: + - * / < > = ~ ! @ # % ^ & | ` ? $ There are a few restrictions on operator names, however: "$" (dollar) cannot be a single-character operator, although it can be part of a multi-character operator name. -- and /* cannot appear anywhere in an operator name, since they will be taken as the start of a comment. A multi-character operator name cannot end in "+" or "-", unless the name also contains at least one of these characters: ~ ! @ # % ^ & | ` ? $ For example, @- is an allowed operator name, but *- is not. This restriction allows Postgres to parse SQL-compliant queries without requiring spaces between tokens. When working with non-SQL-standard operator names, you will usually need to separate adjacent operators with spaces to avoid ambiguity. For example, if you have defined a left-unary operator named "@", you cannot write X*@Y; you must write X* @Y to ensure that Postgres reads it as two operator names not one. Special Characters Some characters that are not alphanumeric have a special meaning that is different from being an operator. Details on the usage can be found at the location where the respective syntax element is described. This section only exists to advise the existence and summarize the purposes of these characters. A dollar sign ($) followed by digits is used to represent the positional parameters in the body of a function definition. In other contexts the dollar sign may be part of an operator name. Parentheses (()) have their usual meaning to group expressions and enforce precedence. In some cases parentheses are required as part of the fixed syntax of a particular SQL command. Brackets ([]) are used to select the elements of an array. See for more information on arrays. Commas (,) are used in some syntactical constructs to separate the elements of a list. The semicolon (;) terminates an SQL command. It cannot appear anywhere within a command, except when quoted as a string constant or identifier. The colon (:) is used to select slices from arrays. (See .) In certain SQL dialects (such as Embedded SQL), the colon is used to prefix variable names. The asterisk (*) has a special meaning when used in the SELECT command or with the COUNT aggregate function. The period (.) is used in floating point constants, and to separate table and column names. Comments A comment is an arbitrary sequence of characters beginning with double dashes and extending to the end of the line, e.g.: -- This is a standard SQL92 comment Alternatively, C-style block comments can be used: /* multi-line comment * with nesting: /* nested block comment */ */ where the comment begins with /* and extends to the matching occurrence of */. These block comments nest, as specified in SQL99 but unlike C, so that one can comment out larger blocks of code that may contain existing block comments. A comment is removed from the input stream before further syntax analysis and is effectively replaced by whitespace. Fields and Columns Fields A field is either a user-defined attribute of a given class or one of the following system-defined attributes: oid stands for the unique identifier of an instance which is added by Postgres to all instances automatically. OIDs are not reused and are 32-bit quantities. xmin The identity of the inserting transaction. xmax The identity of the deleting transaction. cmin The command identifier within the inserting transaction. cmax The command identifier within the deleting transaction. For further information on the system attributes consult . Transaction and command identifiers are 32 bit quantities. Columns A column is a construct of the form: instance{.composite_field}.field `['subscript`]' instance identifies a particular class and can be thought of as standing for the instances of that class. An instance variable is either a class name, an alias for a class defined by means of a FROM clause, or the keyword NEW or OLD. (NEW and OLD can only appear in the action portion of a rule, while other instance variables can be used in any SQL statement.) The instance name can be omitted if the first field name is unique across all the classes being used in the current query. composite_field is a field of of one of the Postgres composite types, while successive composite fields select attributes in the class(s) to which the composite field evaluates. Lastly, field is a normal (base type) field in the class(s) last addressed. If field is of an array type, then the optional subscript selects a specific element in the array. If no subscript is provided, then the whole array is selected. Expressions SQL92 allows expressions to transform data in tables. Expressions may contain operators and functions. An expression is one of the following: constant column expression binary_operator expression expression right_unary_operator left_unary_operator expression ( expression ) parameter functional expression aggregate expression We have already discussed constants and columns. The three kinds of operator expressions indicate respectively binary (infix), right-unary (suffix) and left-unary (prefix) operators. The following sections discuss the remaining options. Parameters A parameter is used to indicate a parameter in a SQL function. Typically this is used in SQL function definition statements. The form of a parameter is: $number For example, consider the definition of a function, dept, as CREATE FUNCTION dept (name) RETURNS dept AS 'select * from dept where name = $1' LANGUAGE 'sql'; Functional Expressions A functional expression is the name of a legal SQL function, followed by its argument list enclosed in parentheses: function (expression [, expression ... ] ) For example, the following computes the square root of an employee salary: sqrt(emp.salary) Aggregate Expressions An aggregate expression represents the application of an aggregate function across the rows selected by a query. An aggregate function reduces multiple inputs to a single output value, such as the sum or average of the inputs. The syntax of an aggregate expression is one of the following: aggregate_name (expression) aggregate_name (ALL expression) aggregate_name (DISTINCT expression) aggregate_name ( * ) where aggregate_name is a previously defined aggregate, and expression is any expression that doesn't itself contain an aggregate expression. The first form of aggregate expression invokes the aggregate across all input rows for which the given expression yields a non-null value. The second form is the same as the first, since ALL is the default. The third form invokes the aggregate for all distinct non-null values of the expression found in the input rows. The last form invokes the aggregate once for each input row regardless of null or non-null values; since no particular input value is specified, it is generally only useful for the count() aggregate. For example, count(*) yields the total number of input rows; count(f1) yields the number of input rows in which f1 is non-null; count(distinct f1) yields the number of distinct non-null values of f1. Target List A target list is a comma-separated list of one or more elements, each of which must be of the form: expression [ AS result_attname ] where result_attname is the name to be assigned to the created column. If result_attname is not present, then Postgres selects a default name based on the contents of expression. If expression is a simple attribute reference then the default name will be the same as that attribute's name, but otherwise the implementation is free to assign any default name. Qualification A qualification consists of any number of clauses connected by the logical operators: NOT AND OR A clause is an expression that evaluates to a boolean over a set of instances. From List The from list is a comma-separated list of from-expressions. The simplest possibility for a from-expression is: class_reference [ [ AS ] alias ] where class_reference is of the form [ ONLY ] table_name [ * ] The from-expression defines an instance variable that ranges over the rows of the specified table. The instance variable's name is either the table name, or the alias if one is given. Ordinarily, if the table has child tables then the instance variable will range over all rows in the inheritance hierarchy starting with the specified table. If ONLY is specified then child tables are not included. A trailing asterisk * can be written to specifically indicate that child tables are included (ONLY and * are mutually exclusive). A from-expression can also be a sub-query: ( select-statement ) [ AS ] alias Here, the effect is as though the SELECT were executed and its results stored in a temporary table, which then becomes available as an instance variable under the given alias. Finally, a from-expression can be built up from simpler from-expressions using JOIN clauses: from_expression [ NATURAL ] join_type from_expression [ ON join_condition | USING ( join_column_list ) ] This syntax allows specification of outer joins. For details see the reference page for SELECT. Lexical Precedence The precedence and associativity of the operators is hard-wired into the parser. Most operators have the same precedence and are left-associative. This may lead to non-intuitive behavior; for example the boolean operators "<" and ">" have a different precedence than the boolean operators "<=" and ">=". Also, you will sometimes need to add parentheses when using combinations of binary and unary operators. For instance SELECT 5 & ~ 6; will be parsed as SELECT (5 &) ~ 6; because the parser has no idea that & is defined as a binary operator. This is the price one pays for extensibility. Operator Ordering (decreasing precedence) OperatorElement Associativity Description :: left Postgres-style typecast [ ] left array element selection . left table/column name separator - right unary minus ^ left exponentiation * / % left multiplication, division, modulo + - left addition, subtraction IS test for TRUE, FALSE, NULL ISNULL test for NULL NOTNULL test for NOT NULL (any other) left all other native and user-defined operators IN set membership BETWEEN containment OVERLAPS time interval overlap LIKE ILIKE string pattern matching < > less than, greater than = right equality, assignment NOT right logical negation AND left logical conjunction OR left logical disjunction
Note that the operator precedence rules also apply to user-defined operators that have the same names as the built-in operators mentioned above. For example, if you define a + operator for some custom data type it will have the same precedence as the built-in + operator, no matter what yours does.