branch: elpa/emacsql commit 58641b98273f0e708c59ad5c79ee50c3b95e0665 Author: Christopher Wellons <well...@nullprogram.com> Commit: Christopher Wellons <well...@nullprogram.com>
Fill out keywords in README. --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 77fea6ca74..46b2465ecb 100644 --- a/README.md +++ b/README.md @@ -144,6 +144,22 @@ Provides `FROM`. [... :from employees] ``` +#### :where `<expr>` + +Provides `WHERE`. + +```el +[... :where (< count 10)] +``` + +#### :group-by `<expr>` + +Provides `GROUP BY`. + +```el +[... :group-by name] +``` + #### :insert-into `<table>` Provides `INSERT INTO`.