Merge branch 'master' of github.com:torpedro/sql-parser

This commit is contained in:
Pedro 2014-11-04 15:44:23 +01:00
commit a3180bca68
1 changed files with 2 additions and 2 deletions

View File

@ -17,15 +17,15 @@ To use the SQL Parser in your own code, you only need to include `SQLParser.h` a
**so far missing features, that are being worked on:** **so far missing features, that are being worked on:**
* Join Statements * Join Statements
* Table Reference Alias (AS)
* Limit Offset * Limit Offset
* Having * Having
* Order By multiple columns * Order By multiple columns
* Distinct
## Language Progress Overview ## Language Progress Overview
* Select Statements: **Mostly** * Select Statements: **Mostly**
* Selection List: **Full** (column names, literals, expressions, functions...) * Selection List: **Mostly** (column names, literals, expressions, functions... DISTINCT is missing)
* From: **Full** (table names, select statements, cross product of each) * From: **Full** (table names, select statements, cross product of each)
* Where: **Mostly** (some special operators might not be supported yet) * Where: **Mostly** (some special operators might not be supported yet)
* Group By: **Partial** (Having is missing) * Group By: **Partial** (Having is missing)