mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Added 'not like' table filter, refs #750
This commit is contained in:
parent
4df1b4d8b0
commit
b3aa5f4313
3 changed files with 8 additions and 0 deletions
|
|
@ -216,6 +216,9 @@ You can filter the data returned by the table based on column values using a que
|
|||
``?column__like=value``
|
||||
Match rows with a LIKE clause, case insensitive and with ``%`` as the wildcard character.
|
||||
|
||||
``?column__notlike=value``
|
||||
Match rows that do not match the provided LIKE clause.
|
||||
|
||||
``?column__glob=value``
|
||||
Similar to LIKE but uses Unix wildcard syntax and is case sensitive.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue