我想更新表格的一行。如何使用SQLAlchemy更新表格行?
要添加我使用的,
session.add(unit) #here unit is unit object of class unit
session.commit()
要更新我嘗試,
session.merge(unit)
session.commit()
然而,在數據庫中有其它列,例如create_by
,created_on
,updated_on
,它們未在單位對象中設置,所以在合併時將它們設置爲NULL。