2.6 KiB
[ WITH <common-table-expression> ]
DELETE [ FROM ] [ <ship-qualifer> ]<table-name>
[ WHERE <predicate>
Discussion: Data in the namespace sys cannot be deleted.
_______________________________
INSERT INTO [ <ship-qualifer> ]<table-name>
[ ( <column-name> [ ,...n ] ) ]
{ VALUES ( { DEFAULT | ~ | <scalar-expression> } [ ,...n ] ) [ ,...n ]
| <query> }
<scalar-expression> ::=
{ <constant>
| <scalar-function>
| <scalar-query>
| [ unary-operator ] expression
| expression <binary-operator> expression }
Discussion:
If a column list is provided columns defines as u(<aura>)
or defined with a default my be omitted. Otherwise the VALUES
or <query>
must provide data for all columns in the expected order.
Tables in the namespace sys cannot be inserted into.
_______________________________
[ WITH <common-table-expression> ]
MERGE [ INTO ] [ <ship-qualifer> ]<target-table-name> [ [ AS ] <alias> ]
USING [ <ship-qualifer> ]<table-source-name> [ [ AS ] <alias> ]
ON <predicate>
[ WHEN MATCHED [ AND <predicate> ]
THEN <merge-matched> ] [ ...n ]
[ WHEN NOT MATCHED [ BY TARGET ] [ AND <predicate> ]
THEN <merge-not-matched> ]
[ WHEN NOT MATCHED BY SOURCE [ AND <predicate> ]
THEN <merge-matched> ] [ ...n ]
<merge-matched> ::=
UPDATE { SET <column-name> = <scalar-expression> | DELETE } [ ...n ]
<merge-not-matched> ::=
INSERT [ ( <column-name> [ ,...n ] ) ]
VALUES ( { DEFAULT | ~ | <scalar-expression> } [ ,...n ] )
Discussion:
Cross ship merges not allowed.
The discussion of INSERT
also applies when not matched by target.
In the case of multiple WHEN MATCHED
or WHEN NOT MATCHED
and overlapping predicates, the cases are processed in order, so the last successful case will take precedence.
Tables in the namespace sys cannot be merged into.
_______________________________
{ CREATE | ALTER } { PROC | PROCEDURE }
[<db-qualifer>]<procedure-name>
[ { #<parameter-name> <data-type> } ] [ ,...n ]
AS { sql_statement [ ;...n ] }
Discussion: TBD Cannot create database.
_______________________________
TRUNCATE TABLE [ <ship-qualifer> ]<table-name>
Discussion: Tables in the namespace sys cannot be truncated.
_______________________________
[WITH <common-table-expression> ]
UPDATE [ FROM ] [ <ship-qualifer> ]<table-name>
SET { <column-name> = { <scalar-expression> | DEFAULT | ~ }
[ WHERE <predicate> ]
Discussion:
DEFAULT
available only when column has a default defined.
~
available only when column defined as u(aura}
.
Tables in the namespace sys cannot be updated.