79641628

Date: 2025-05-28 06:37:32
Score: 0.5
Natty:
Report link

New syntax (1.4 version and above)

from sqlalchemy import delete

with Session(engine) as session:
    statement = delete(User)
    session.execute(statement)
    session.commit()

https://docs.sqlalchemy.org/en/14/core/dml.html?highlight=delete

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: robertspierre