mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
?column_notcontains= table filter, closes #2287
This commit is contained in:
parent
c863443ea1
commit
f99c2f5f8c
3 changed files with 15 additions and 0 deletions
|
|
@ -237,6 +237,9 @@ You can filter the data returned by the table based on column values using a que
|
|||
``?column__contains=value``
|
||||
Rows where the string column contains the specified value (``column like "%value%"`` in SQL).
|
||||
|
||||
``?column__notcontains=value``
|
||||
Rows where the string column does not contain the specified value (``column not like "%value%"`` in SQL).
|
||||
|
||||
``?column__endswith=value``
|
||||
Rows where the string column ends with the specified value (``column like "%value"`` in SQL).
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue