mysql> select * from pp;
+----+------+
| id | name |
+----+------+
| 1 | xx |
| 2 | xx |
| 3 | xx |
| 4 | xx |
| 5 | xx |
| 6 | xx |
| 7 | xx |
| 8 | xx |
| 9 | xx |
| 10 | xx |
| 13 | xx |
| 14 | xx |
| 15 | xx |
| 16 | xx |
| 17 | xx |
| 18 | xx |
| 19 | xx |
| 20 | xx |
| 21 | xx |
| 22 | xx |
| 23 | xx |
| 24 | xx |
+----+------+
22 rows in set (0.00 sec) mysql> delete from pp where id=24;
Query OK, 1 row affected (0.11 sec) mysql> show create table pp; CREATE TABLE `pp` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=gbk

重起MYSQL 服务器

mysql> show create table pp;

| pp    | CREATE TABLE `pp` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=gbk |

最新文章

  1. <十六>JDBC_使用 DBUtils 编写通用的DAO
  2. iOS开发 适配iOS10以及Xcode8
  3. 学霸网站-Beta版本发布说明
  4. .NET破解之图片下载器
  5. 后缀数组---Musical Theme
  6. java--接口和抽象类
  7. VI查找与替换
  8. linux网络故障解决方法
  9. DNF技能贴图的研究
  10. 《C#入门典》
  11. classes system in sencha touch
  12. aix knowlgdgecenter
  13. Javascript实例技巧精选(8)—计算当月剩余天数
  14. 怎么用secureCRT连接Linux
  15. 【.Net Core】处理静态文件
  16. PDM:Training Models of Shape from Sets of Examples
  17. Nginx与ftp服务器
  18. docker镜像制作 centos6 nginx1.15.6 with NGINX_UPSYNC_MODULE
  19. LINUX部署SVN服务器
  20. 平面最近点对模板[luogu P1429]

热门文章

  1. Java的平台无关性
  2. Myeclipse2014 自带的报表功能 与 Eclipse BIRT
  3. NServiceBus-容器
  4. pku3663 Costume Party
  5. 如何在Fedora 22上面配置Apache的Docker容器
  6. JavaScript 变量、作用域及内存详解
  7. Java ClassLoader 原理详细分析
  8. HDU 5776 sum (前缀和)
  9. C# Control 控件DrapDrop不触发的问题
  10. C# 数据类型详解