摘要:
引言: 回忆一下MySQL的一些基础操作。 索引 增加索引的方法有几种,如下: 1.添加PRIMARY KEY(主键索引) ALTER TABLE `table_name` ADD PRIMARY KEY ( `column` ) 2.添加UNIQUE(唯一索引) ALTER TABLE `tabl 阅读全文
摘要:
引言: 因最近想要测试一下MySQL百万级数据处理过程,所以要一次对数据库插入大量数据。 具体存储过程如下: delimiter $$$ create procedure inserttest() begin declare i int default 0; set i=0; start trans 阅读全文