Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我们的应用程序中,当用户创建订单时,我们会得到下一个订单 # 如下:
SELECT MAX(CAST(REPLACE(orderNum, 'SO', '') AS SIGNED)) + 1 FROM orders
问题是由于客户越来越忙,我们开始看到在完全相同的时间创建的订单导致重复的订单#。
处理这个问题的最佳方法是什么?我们应该锁定整个订单表还是只锁定行?还是我们应该进行交易?
您可以创建一个额外的表,其中只有一个具有 auto_increment 属性的字段。现在,每次您需要一个新订单号时,您都会调用一个函数,该函数将在此表中创建一个字段并返回 last_insert_id() 的结果,然后您可以将其用作订单号(只需确保设置表高于您的最大订单号)。