updated readme

dev
Bill 2 years ago
parent f0940ae442
commit 5591564e47

@ -223,6 +223,13 @@ DROP TABLE my_table IF EXISTS
- File name can also be absolute path. - File name can also be absolute path.
- See `data/q1.sql` for more information - 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: ## Delete Data:
- Use a query like `DELETE FROM <table_name> [WHERE <conditions>]` to delete rows from a table that matches the conditions. - Use a query like `DELETE FROM <table_name> [WHERE <conditions>]` to delete rows from a table that matches the conditions.

@ -2,7 +2,7 @@
## GLOBAL CONFIGURATION FLAGS ## GLOBAL CONFIGURATION FLAGS
version_string = '0.5.1a' version_string = '0.5.2a'
add_path_to_ldpath = True add_path_to_ldpath = True
rebuild_backend = False rebuild_backend = False
run_backend = True run_backend = True

Loading…
Cancel
Save