Skip to content

Commit

Permalink
interim commit
Browse files Browse the repository at this point in the history
  • Loading branch information
agershun committed Nov 21, 2014
1 parent d053c55 commit 78c7bd0
Show file tree
Hide file tree
Showing 33 changed files with 11,321 additions and 5,372 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# Changelog

### 0.0.22 (20.11.2014 -)
### 0.0.22 (20.11.2014 - )

* SELECT UNIQUE
* SELECT MINUS SELECT
* RENAME TABLE table TO literal
* ALTER TABLE table RENAME COLUMN column TO column
* ALTER TABLE table DROP COLUMN column
* Double quoter sign '' and \\' translates into '

### 0.0.21 (19.11.2014 - 20.11.2014)

Expand Down
14 changes: 12 additions & 2 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,20 @@

* ALTER TABLE ADD COLUMN
* ALTER TABLE MODIFY COLUMN
* World City Database - big data
* FETCH FIRST NumValue ROWS ONLY

* Order by random
SELECT column, RAND() as IDX
FROM table
ORDER BY IDX FETCH FIRST 1 ROWS ONLY
* RAND, RANDOM, NEWID
* TABLESAMPLE

* Column resolutions

* Primary key, Foreign Key, Constraints, Unique Indexe
* Join source Subquery, ParamValue
* Join source Table, Subquery, ParamValue, View
* Transactions
* ORDER BY RAND(), RANDOM(), NEWID()
* TRUNCATE TABLE
Expand All @@ -14,7 +25,6 @@
* Check IS NULL/IS NOT NULL
* DELETE JOIN / UPDATE JOIN
* Fix tests
* SELECT 1+1
* STORE / RESTORE TABLE
* FOREIGN KEY
* CREATE INDEX
Expand Down
Loading

0 comments on commit 78c7bd0

Please sign in to comment.