如何在mysql中获取下一个自增id

2021-11-20 00:00:00 sql mysql

如何在mysql中获取下一个id插入到表中

How to get the next id in mysql to insert it in the table

INSERT INTO payments (date, item, method, payment_code)
VALUES (NOW(), '1 Month', 'paypal', CONCAT("sahf4d2fdd45", id))

推荐答案

使用 LAST_INSERT_ID() 来自您的 SQL 查询.

Use LAST_INSERT_ID() from your SQL query.

您也可以使用mysql_insert_id()使用 PHP 获取它.

You can also use mysql_insert_id() to get it using PHP.

相关文章