updated readme
This commit is contained in:
@@ -223,6 +223,13 @@ DROP TABLE my_table IF EXISTS
|
||||
- File name can also be absolute path.
|
||||
- See `data/q1.sql` for more information
|
||||
|
||||
## Combine Queries
|
||||
- `UNION ALL` is a bag union of two query results with same schema. e.g.
|
||||
```
|
||||
SELECT * FROM table 1 UNION ALL SELECT * FROM table 2
|
||||
```
|
||||
- `EXCEPT` clause will return the difference of two query results. e.g.
|
||||
|
||||
## Delete Data:
|
||||
- Use a query like `DELETE FROM <table_name> [WHERE <conditions>]` to delete rows from a table that matches the conditions.
|
||||
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@
|
||||
|
||||
## GLOBAL CONFIGURATION FLAGS
|
||||
|
||||
version_string = '0.5.1a'
|
||||
version_string = '0.5.2a'
|
||||
add_path_to_ldpath = True
|
||||
rebuild_backend = False
|
||||
run_backend = True
|
||||
|
||||
Reference in New Issue
Block a user