mysql 优化
由于此处我并不是一个专职的 DBA,更多倾向于业务。技术开发,对于 DBA 常常会负责的硬件调参等不太了解,也不会花时间在这些方面,主要讲和记录一些常用的东西
select last_insert_id()
The ID that was generated is maintained in the server on a per-connection basis. This means that the value returned by the function to a given client is the first AUTO_INCREMENT value generated for most recent statement affecting an AUTO_INCREMENT column by that client. This value cannot be affected by other clients, even if they generate AUTO_INCREMENT values of their own. This behavior ensures that each client can retrieve its own ID without concern for the activity of other clients, and without the need for locks or transactions. —— Mysql5.6 官方文档
tag: