当月的唯一文档编号

发布于 2024-10-12 14:17:09 字数 272 浏览 1 评论 0原文

我需要创建格式为:

CONSTANT_STRING/%d/mm/yyyy

mm - 月份(两位数)的 发票号码 yyyy - 年

现在,%d 是特定月份的发票编号。换句话说,这个数字每个月都会重置。

现在我正在数据库中检查当月的最高数字是多少。然后在其增量之后我保存该行。

我需要整个数字是唯一的。然而,有时会发生重复的情况(两个用户同时保存)。

有什么建议吗?

I need to create an invoice number in format:

CONSTANT_STRING/%d/mm/yyyy

mm - Month (two digits)
yyyy - Year

Now, the %d is the number of the invoice in the specific month. Another words, this number is reseted every month.

Now I am checking in database what is the highest number in current month. Then after its incrementation I am saving the row.

I need the whole number to be unique. However, it sometimes happens that it is being duplicated (two users save in the same time).

Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

云巢 2024-10-19 14:17:09

在字段上放置唯一索引,并在尝试保存第二个实例时捕获数据库错误。另外,将获取值推迟到最后一刻。

Put a unique index on the field and catch the database error when trying to save the second instance. Also, defer getting the value until the last possible moment.

始终不够 2024-10-19 14:17:09

一种解决方案是 SELECT ... FOR UPDATE ,它会阻塞该行直到您更新它,但可能会导致串行多任务应用程序出现死锁。

最好的方法是获取数字并在事务中递增它,然后开始工作。
这样,该行就不会被长时间锁定。

查看BEGIN WORKCOMMIT

One solution is SELECT ... FOR UPDATE, which blocks the row until you update it, but can cause deadlocks with a serios multitasking application.

The best way is to fetch the number and increment it in a transaction and then start the work.
This way, the row is not locked for long.

Look into BEGIN WORK and COMMIT.

您的好友蓝忘机已上羡 2024-10-19 14:17:09

使用发票表的主键(最好是INT)或为每张发票分配一个唯一的编号,例如通过uniqid

附言。如果您使用 uniqid,您可以通过将 more_entropy 参数设置为 true 来增加唯一性

Use the primary key (preferably an INT) of the invoice table or assign a unique number to each invoice, e.g. via uniqid.

PS. If you are using uniqid, you can increase the uniqueness by setting more_entropy parameter to true.

↙温凉少女 2024-10-19 14:17:09

在一个查询中设置所有 id。

$query = 'INSERT INTO table (invoice_number) VALUES (CONCAT(\''.CONSTANT.'\', \'/\', (SELECT COUNT(*) + 1 AS current_id FROM table WHERE MONTH(entry_date) = \''.date('n').'\' AND YEAR(entry_date) = \''.date('Y').'\'), \'/\', \''.date('m/Y').'\'))';

set the id all in one query.

$query = 'INSERT INTO table (invoice_number) VALUES (CONCAT(\''.CONSTANT.'\', \'/\', (SELECT COUNT(*) + 1 AS current_id FROM table WHERE MONTH(entry_date) = \''.date('n').'\' AND YEAR(entry_date) = \''.date('Y').'\'), \'/\', \''.date('m/Y').'\'))';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文