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.
帮助 如何使用 sql 获取数据库表的 auto_increment 值而不使用 mysql 中的 max(id) 或以前的 id 或行数
使用 LAST_INSERT_ID() DOCS获取最后生成的 ID。
考虑具有列 'Id' 的表 'Student'(Id 是自动递增的)。然后,
select Id from Student order by Id desc LIMIT 1