1
Fork 0

work on documentation for new release

This commit is contained in:
Jake Wheat 2019-07-07 12:54:22 +01:00
parent 8555650583
commit e54cfee62b
4 changed files with 169 additions and 30 deletions

View file

@ -141,16 +141,45 @@ The supported scalar expressions include:
== DDL
todo
* schemas
** create, drop + drop restrict
* tables
** create table
*** constraints: named, null, unique, primary key, foreign key (matches, on update/delete)
*** identity (the weird ansi version), defaults
*** defaults
** alter table
*** defaults, null, set data type, drop column, constraints
** drop table + restrict
** create, drop view
** create, alter, drop domain
*** defaults, constraints
** create, drop assertion
** create, alter, drop sequence
== Non-query DML
todo
** delete
*** delete from
*** as alias
*** where
** truncate
*** with identity options
** insert
*** values, general queries, defaults
** update
*** including row updates
== Access Control
todo
** grant privileges
*** all, grant option, table, domain, type, sequence, role, etc.
** revoke
** create role, drop role
== Transaction management
todo
* begin, commit, rollback
* savepoints