1
0
mirror of synced 2025-01-18 06:21:40 +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: Syntax:
<code> <code>
//operand// [NOT ]EXISTS (//subquery//) <operand> [NOT ]EXISTS (<subquery>)
</code> </code>
The EXISTS operator returns TRUE if the subquery returns one or more rows and FALSE otherwise. The EXISTS operator returns TRUE if the subquery returns one or more rows and FALSE otherwise.

View File

@ -1,6 +1,6 @@
Syntax: Syntax:
<code> <code>
//operand// IN (//subquery//|//value list//) <operand> IN (<subquery>|<value list>)
</code> </code>
An IN conditional expression returns true if the //operand// is found from result of the //subquery// 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 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> <code>
DELETE FROM //component_name// DELETE FROM <component_name>
[WHERE //where_condition//] [WHERE <where_condition>]
[ORDER BY ...] [ORDER BY ...]
[LIMIT //record_count//] [LIMIT <record_count>]
</code> </code>
* The DELETE statement deletes records from //component_name// and returns the number of records deleted. * The DELETE statement deletes records from //component_name// and returns the number of records deleted.

View File

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

View File

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

View File

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