mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 09:24:31 +02:00
A less potentially confusing parameter name
This commit is contained in:
parent
9fedfc69d7
commit
7ddf530088
1 changed files with 2 additions and 2 deletions
|
|
@ -1275,8 +1275,8 @@ The conversion will be applied to every row in the specified table. You can limi
|
|||
You can include named parameters in your where clause and populate them using one or more ``--param`` options::
|
||||
|
||||
$ sqlite-utils convert content.db articles headline 'value.upper()' \
|
||||
--where "headline like :like" \
|
||||
--param like '%cat%'
|
||||
--where "headline like :query" \
|
||||
--param query '%cat%'
|
||||
|
||||
The ``--dry-run`` option will output a preview of the conversion against the first ten rows, without modifying the database.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue