db: fixed unclear example

This commit is contained in:
Medium Fries 2018-10-03 18:08:11 -07:00
parent 986a020a8e
commit 9ae23985e4

View File

@ -36,7 +36,7 @@ Caution: the delete operation also accepts tables as valid arguments so a query
### Updating entries
```
update table set attribute=123 where def='abc';
update tableName set attribute=123 where def='abc';
```
The above updates an attribute based on the condiftion `where def='abc'`.