1
Fork 0

add support for column constraints in create table

This commit is contained in:
Jake Wheat 2015-08-02 19:27:39 +03:00
parent 4f80ec96d4
commit e6e8264b3d
5 changed files with 303 additions and 16 deletions
tools/Language/SQL/SimpleSQL

View file

@ -1,16 +1,28 @@
This file goes through the grammar for SQL 2011 (using the draft standard).
This file goes through the grammar for SQL 2011 queries (using the
draft standard).
We are only looking at the query syntax, and no other parts.
There are other files which cover some of the other sections from SQL
2011 (ddl, non-query dml, etc).
Possible sections not in the todo which could
be covered:
There are other files which cover some of the other sections.
Possible sections not covered yet:
13 modules
16 control statements
18 connection management
20 dynamic
22 direct
23 diagnostics
procedural sql
some of the main areas being left for now:
temporal and versioning stuff
modules
ref stuff
todo: finish this list
The goal is to create some example tests for each bit of grammar, with