学说:关于重复密钥更新

2021-12-26 00:00:00 mysql doctrine pdo on-duplicate-key

如何编写带有选项 ON DUPLICATE KEY UPDATEINSERT 条令查询?

How can I write an INSERT doctrine query with option ON DUPLICATE KEY UPDATE?

推荐答案

问题是这是一个 MySQL 特定的问题,所以它不会被 Doctrine 直接覆盖.

The problem is that this is a MySQL specific problem so it will not be directly covered by Doctrine.

正如评论中提到的,您需要为此编写一个 RawSQL 查询.这将是最简单的方法.

As a comment mentioned, you would need to write a RawSQL Query for this. This would be the easiest way.

如果您希望它更复杂且真正独立于数据库,请查看 事件 和它的可能性.在执行实际查询之前,您可以检查是否存在,如果存在,则采取相应措施.

If you want it more sophisticated and truely DB independent, look into Events and it's possibilities. Before the actual query is executed, you can check for an existence and if it exists, act accordingly.

ORM/PHP 独立的方法是编写一个存储过程/触发器来处理这个问题数据库端.

An ORM/PHP independent way is to write a stored procedure/trigger that handles this problem database side.

相关文章