Difference between revisions of "SQL Syntax"

From AgileApps Support Wiki
imported>Aeric
imported>Aeric
Line 72: Line 72:
:  [[SQL Functions|SQL Function]]
:  [[SQL Functions|SQL Function]]
:| &#39;''string literal''&#39; <!-- &#39; = single quote -->
:| &#39;''string literal''&#39; <!-- &#39; = single quote -->
:| other stuff...
:| ( expr }
:| [+|-] expr
 
:Our expression / MySQL simpleExpression:
:| expr + expr
:| expr - expr
:| expr * expr
:| expr / expr
 
:MySQL expression:
:| expr OR expr
:| expr AND expr
 
:Our BNF:
:| expr IS [NOT] NULL
:| expr =
 
</div>
</div>

Revision as of 19:26, 16 November 2011

Here is the syntax for the SQL SELECT statement that the SQL parser recognizes.

Considerations
  • SQL syntax is case insensitive.
  • Field and table names are case sensitive
Legend
  • [ x ] - Optional (one or none)
  • [, x ... ] - Optional additional values, in a comma-separated list
  • x | y - Choose one. Curly braces are added when needed: { x | y } ...
  • CAPITALIZED - SQL Keyword (case insensitive)
  • italicized - Value you supply. (Table names and column names are case-sensitive)

SELECT Statement

In a select statement, you designate one more columns separated by commas (or "*" for all columns), plus a table or join to get the data from, and additional options:

SELECT
[ DISTINCT ]
[ ( ]  column_expr [ , column_expr ... ]  [ ) ]
FROM table_reference
[ WHERE where_condition ]
[ GROUP BY column_name [ASC | DESC]  [ , column_name [ASC | DESC] ... ]
[WITH ROLLUP]
[HAVING where_condition]
]
[ ORDER BY column_name [ASC | DESC]  [ , column_name [ASC | DESC] ... ]
[ LIMIT {maximum_rows | offset, maximum_rows} ]

__TBD:

  • No expr or position in our GROUP BY. Column_name only.
  • No expr or position in our ORDER BY. Column_name only.

__ where:

DISTINCT
Eliminates duplicate rows from the result set.
For example: DISTINCT(customer_name, address)
HAVING
Is only allowed as part of GROUP BY, for performance reasons. (WHERE is vastly more efficient.)
ASC
Ascending (the default).
DESC
Descending.
maximum_rows
Maximum number of rows to return.
offset
The row to start from. Offset for the first row is zero (0).

Learn more:: MySQL Select Statement syntax

column_expr

*  |  table_alias.*  |  column_name [ [AS] column_alias ]  |  expr [AS] column_alias

where:

column_alias
Used for the column name in the result set in the SQL Browser, or for the tag name in the REST execSQL resource.
Required when an expression is specified.
Can be used as a field name in a group_by_clause or order_by_clause.
For example:
SELECT CONCAT(last_name,', ',first_name) AS full_name
FROM Customer_Contacts ORDER BY full_name;

table_reference

...

where:

xxx
...

where_condition

An expression that evaluates to true or false for a row. When true, the row is selected. The expression has the form:

...

where:

xxx
...

expr

  SQL Function
| 'string literal'
| ( expr }
| [+|-] expr
Our expression / MySQL simpleExpression:
| expr + expr
| expr - expr
| expr * expr
| expr / expr
MySQL expression:
| expr OR expr
| expr AND expr
Our BNF:
| expr IS [NOT] NULL
| expr =