1
0
mirror of synced 2025-01-29 19:41:45 +03:00

fixed unsupported text formatting within <code> tags (for SQL statements)

This commit is contained in:
hansbrix 2007-04-13 23:33:37 +00:00
parent 876973a8cb
commit cc85ccca1a
6 changed files with 20 additions and 20 deletions

View File

@ -1,6 +1,6 @@
Syntax:
<code>
//operand// [NOT ]EXISTS (//subquery//)
<operand> [NOT ]EXISTS (<subquery>)
</code>
The EXISTS operator returns TRUE if the subquery returns one or more rows and FALSE otherwise.

View File

@ -1,6 +1,6 @@
Syntax:
<code>
//operand// IN (//subquery//|//value list//)
<operand> IN (<subquery>|<value list>)
</code>
An IN conditional expression returns true if the //operand// is found from result of the //subquery//
or if its in the specificied comma separated //value list//, hence the IN expression is always false if the result of the subquery

View File

@ -1,8 +1,8 @@
<code>
DELETE FROM //component_name//
[WHERE //where_condition//]
DELETE FROM <component_name>
[WHERE <where_condition>]
[ORDER BY ...]
[LIMIT //record_count//]
[LIMIT <record_count>]
</code>
* The DELETE statement deletes records from //component_name// and returns the number of records deleted.

View File

@ -2,7 +2,7 @@ Syntax:
<code>
FROM //component_reference// [[LEFT | INNER] JOIN //component_reference//] ...
FROM <component_reference> [[LEFT | INNER] JOIN <component_reference>] ...
</code>
The FROM clause indicates the component or components from which to retrieve records.

View File

@ -2,15 +2,15 @@ SELECT statement syntax:
<code>
SELECT
[ALL | DISTINCT]
//select_expr//, ...
[FROM //components//
[WHERE //where_condition//]
[GROUP BY //groupby_expr//
<select_expr>, ...
[FROM <components>
[WHERE <where_condition>]
[GROUP BY <groupby_expr>
[ASC | DESC], ... ]
[HAVING //where_condition//]
[ORDER BY //orderby_expr//
[HAVING <where_condition>]
[ORDER BY <orderby_expr>
[ASC | DESC], ...]
[LIMIT //row_count// OFFSET //offset//}]
[LIMIT <row_count> OFFSET <offset>}]
</code>

View File

@ -1,6 +1,6 @@
Syntax:
<code>
WHERE //where_condition//
WHERE <where_condition>
</code>
* The WHERE clause, if given, indicates the condition or conditions that the records must satisfy to be selected.