From ff9fc284689dd2a369e781ca70efa252a9a6f02a Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Fri, 14 May 2021 11:14:35 +0200 Subject: [PATCH] Update 08_SQL_Select.md --- docs/en/02_Developer_Guides/00_Model/08_SQL_Select.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/02_Developer_Guides/00_Model/08_SQL_Select.md b/docs/en/02_Developer_Guides/00_Model/08_SQL_Select.md index 65c71ae8b..12c5aef29 100644 --- a/docs/en/02_Developer_Guides/00_Model/08_SQL_Select.md +++ b/docs/en/02_Developer_Guides/00_Model/08_SQL_Select.md @@ -139,7 +139,7 @@ function which would build the INSERT and UPDATE queries on the fly. This method still exists, but internally uses `SQLUpdate` / `SQLInsert`, although the actual query construction is now done by the `DBQueryBuilder` object. -Each of these classes implements the interface `SQLWriteExpression`, noting that each +Each of these classes implement the interface `SQLWriteExpression`, noting that each accepts write key/value pairs in a number of similar ways. These include the following API methods: @@ -150,7 +150,7 @@ API methods: in the format `['Column' => ['SQL' => ['parameters]]]` * `assign` - Singular form of addAssignments, but only assigns a single column value * `assignSQL` - Assigns a column the value of a specified SQL expression without parameters - `assignSQL('Column', 'SQL)` is shorthand for `assign('Column', ['SQL' => []])` + `assignSQL('Column', 'SQL')` is shorthand for `assign('Column', ['SQL' => []])` SQLUpdate also includes the following API methods: