From 869378c6efc111dbb9591b5e9a829c15a104ac34 Mon Sep 17 00:00:00 2001 From: pavemaksim Date: Fri, 3 Jul 2020 12:14:18 +0300 Subject: [PATCH] Typo fixed in group by examples in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 78d9225..35adc72 100644 --- a/README.md +++ b/README.md @@ -357,7 +357,7 @@ SELECT dictGetString('dict', 'attribute', tuple(`column`, 'string value')) as `a Works like select. ```php -$builder->from('table')->select('column', raw('count()')->groupBy('attribute'); +$builder->from('table')->select('column', raw('count()'))->groupBy('attribute'); ``` Final query will be like: