1. 下面两个子查询
select * from ym where id=(select max(id) from ym y) //ok
delete from ym where id=(select max(id) from ym y) //wrong
2.
假设TableA中有一自增子段id,插入数据后,假设自增到10,然后把tableA中的数据全部删除
1) 不重启mysql,插入的数据为11
2)若此时重启mysql,插入的数据为1
from :www.itlife365.com
from:http://hi.baidu.com/xghrbc1001/blog/item/16a14173cb08a3108601b051.html