delete_where(analyze=True), closes #378

This commit is contained in:
Simon Willison 2022-01-10 17:08:05 -08:00
commit 389cbd5792
3 changed files with 31 additions and 2 deletions

View file

@ -717,6 +717,8 @@ You can delete all records in a table that match a specific WHERE statement usin
Calling ``table.delete_where()`` with no other arguments will delete every row in the table.
Pass ``analyze=True`` to run ``ANALYZE`` against the table after deleting the rows.
.. _python_api_upsert:
Upserting data