标签:sel The ack objects you turned state cts let
In SQL Alchemy you are deleting Objects that you get with a query from the database. This you can do in 2 Ways:
Deleting with query (will issue just one DELETE statement):
session.query(User).filter(User.id==7).delete()
session.commit()
Deleting object instance returned by a query (will issue 2 statements: first SELECT, then DELETE):
obj=session.query(User).filter(User.id==7).first()
session.delete(obj)
session.commit()
from: https://stackoverflow.com/a/26643978/8025086
标签:sel The ack objects you turned state cts let
原文地址:https://www.cnblogs.com/buxizhizhoum/p/10956978.html