mirror of
https://codeberg.org/vlw/php-mysql.git
synced 2025-09-14 00:33:41 +02:00
doc(fix): update missed reference "for()" to "from()" in README
This commit is contained in:
parent
03868ae784
commit
407e8e80a4
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ which would be equivalent to the following in MySQL:
|
|||
SELECT `columns` FROM `table` WHERE `filter` ORDER BY `order_by` LIMIT `limit`;
|
||||
```
|
||||
|
||||
- All methods can be chained in any order (even multiple times) after a [`for()`](#for) as long as a [`select()`](#select), [`insert()`](#insert), [`update()`](#update), or [`delete()`](#delete) is the last method.
|
||||
- All methods can be chained in any order (even multiple times) after a [`from()`](#from) as long as a [`select()`](#select), [`insert()`](#insert), [`update()`](#update), or [`delete()`](#delete) is the last method.
|
||||
- Chaining the same method more than once will override its previous value. Passing `null` to any method that accepts it will unset its value completely.
|
||||
|
||||
## Install from composer
|
||||
|
|
Loading…
Add table
Reference in a new issue