使用SQLAlchemy 進行優雅的重複鍵更新
問題:有沒有一種無縫的方法來執行INSERT ... SQLAlchemy 中的ON DUPLICATE KEY UPDATE使用類似以下的語法inserter.insert().execute(list_of_dictionaries)?
答案:
MySQL 內建功能(自版本1.2 起) 🎜>
特別是對於MySQL,SQLAlchemy現在包含對 ON 的支援DUPLICATE KEY UPDATE。SQL 語句中的 ON DUPLICATE KEY UPDATE
要在生成的 SQL 中顯式包含 ON DUPLICATE KEY UPDATE,您可以使用 @compiles 裝飾器:from sqlalchemy.ext.compiler import compiles from sqlalchemy.sql.expression import Insert @compiles(Insert) def append_string(insert, compiler, **kw): s = compiler.visit_insert(insert, **kw) if 'append_string' in insert.kwargs: return s + " " + insert.kwargs['append_string'] return s這允許您將必要的字串附加到產生的insert 語句:
my_connection.execute(my_table.insert(append_string='ON DUPLICATE KEY UPDATE foo=foo'), my_values)
ORM 中的ON DUPLICATE KEY UPDATE 函數
雖然SQLAlchemy 缺乏對ON DUPLICATE KEY UPDATE 或MERGE 的明確 ORM 支持,但它確實具有session.merge() 函數。不過,函數僅對主鍵有效。 要模擬非主鍵的 ON DUPLICATE KEY UPDATE 功能,可以實作下列函數:以上是如何透過 SQLAlchemy 有效地使用 INSERT ... ON DUPLICATE KEY UPDATE?的詳細內容。更多資訊請關注PHP中文網其他相關文章!