如何为php mysql驱动的数据库生成下一个id号

发布于 2024-12-24 18:46:45 字数 233 浏览 2 评论 0原文

我有一个表employees,其中包含公司员工的详细信息。

每个都分配了一个唯一的序列号。每当我们添加一个新员工时,都应该在添加表单中显示一个序列号,该序列号比最后输入的员工的序列号大一个数字。

例如,数据库包含 12 名员工。最后一个条目的序列号是12。当我尝试添加新员工时,它应该自动分配序列号 13。所以我不需要输入序列号。我该怎么做?

I have a table employees which contains the details of employees in a firm.

Each one assigned a unique serial number. Whenever we add a new employee, it should display a serial number in adding form, which is one number greater than the serial number of the last entered employee.

For example, the database contains 12 employees. The serial number of the last entry is 12. When I try to add new employee it should automatically assign the serial number 13. So I don't need to enter serial number. How can I do this?

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

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

发布评论

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

评论(4

七婞 2024-12-31 18:46:45

即使查询当前数据库状态(除非只有一个用户正在使用该应用程序),您也无法精确预测下一个 auto_increment ID。示例:您打开表单,从数据库中获取下一个 auto_increment ID 并显示 13 作为下一个预测值。与此同时,另一个用户打开表单并保存的速度比您更快。其他用户记录的真实 ID 是 13,您的记录是 14。

如果您确实想在表单中显示使用的 ID,则需要对您的记录进行某种分配(例如,在打开表单时创建一个空记录并使用其 ID)。通过某种状态字段或必填字段,您可以过滤应用程序中的那些空记录,直到它们完成并定期清除未完成的记录。唯一的缺点是,如果用户在未填写表单的情况下打开表单,它可能会为您提供不连续的 ID(例如 14、15、18、20...)。

You can't precisely predict the next auto_increment ID, even when querying the current database status (apart from exactly one user is using the application). Example: you open the form, fetch the next auto_increment ID from the DB and display 13 as the next predicted value. In the meantime, another user opens the form and saves it faster than you. The real ID of the other user's record would be 13, yours 14.

If you really want to display the used ID in your form, you need to do some kind of allocation of your record (e.g. create an empty record on opening the form and using its ID). With some kind of status field or required field you could filter those empty records in your application until they are completed and periodically purge uncompleted records. Only downside is, that it will probably give you uncontinuous IDs if users open the form without completing it (e.g. 14, 15, 18, 20, ...).

避讳 2024-12-31 18:46:45

如果序列号设置为 auto_increment,您可以使用以下方法预先查找下一个 auto_increment 值:

$sql = "SHOW TABLE STATUS LIKE table_name";
$r = mysql_query($sql);

$row = mysql_fetch_assoc($r);
$next_increment = $row['Auto_increment'];

其中 table_name 是表的名称。

If the serial number is set to auto_increment you could look up the next auto_increment value beforehand using:

$sql = "SHOW TABLE STATUS LIKE table_name";
$r = mysql_query($sql);

$row = mysql_fetch_assoc($r);
$next_increment = $row['Auto_increment'];

Where table_name is the name of your table.

禾厶谷欠 2024-12-31 18:46:45
for employee_id use auto increment
for employee_id use auto increment
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文