mysql怎么分表,mysql数据库分表教程实例

发布时间:2020-09-21编辑:脚本学堂
在mysql数据库中数据超过100w记录时,则需要考虑分表或分区了,这里介绍下myisam存储引擎下mysql分表的方法。

 首先,分多少个表,前提当然是满足应用。

这里使用了一个比较简单的分表方法,根据自增id的尾数来分,也就是说分0-9一共10个表,其取值也很好做,就是对10进行取模。

另外,还可以根据某一字段的md5值取其中几位进行分表,这样的话,可以分的表就很多了。

创建表:
 

复制代码 代码示例:
create table `test`.`article_0` (
`id` bigint( 20 ) not null ,
`subject` varchar( 200 ) not null ,
`content` text not null ,
primary key ( `id` )
) engine = myisam character set utf8 collate utf8_general_ci
create table `test`.`article_1` (
`id` bigint( 20 ) not null ,
`subject` varchar( 200 ) not null ,
`content` text not null ,
primary key ( `id` )
) engine = myisam character set utf8 collate utf8_general_ci
create table `test`.`article_2` (
`id` bigint( 20 ) not null ,
`subject` varchar( 200 ) not null ,
`content` text not null ,
primary key ( `id` )
) engine = myisam character set utf8 collate utf8_general_ci
create table `test`.`article_3` (
`id` bigint( 20 ) not null ,
`subject` varchar( 200 ) not null ,
`content` text not null ,
primary key ( `id` )
) engine = myisam character set utf8 collate utf8_general_ci
create table `test`.`article_4` (
`id` bigint( 20 ) not null ,
`subject` varchar( 200 ) not null ,
`content` text not null ,
primary key ( `id` )
) engine = myisam character set utf8 collate utf8_general_ci
create table `test`.`article_5` (
`id` bigint( 20 ) not null ,
`subject` varchar( 200 ) not null ,
`content` text not null ,
primary key ( `id` )
) engine = myisam character set utf8 collate utf8_general_ci
create table `test`.`article_6` (
`id` bigint( 20 ) not null ,
`subject` varchar( 200 ) not null ,
`content` text not null ,
primary key ( `id` )
) engine = myisam character set utf8 collate utf8_general_ci
create table `test`.`article_7` (
`id` bigint( 20 ) not null ,
`subject` varchar( 200 ) not null ,
`content` text not null ,
primary key ( `id` )
) engine = myisam character set utf8 collate utf8_general_ci
create table `test`.`article_8` (
`id` bigint( 20 ) not null ,
`subject` varchar( 200 ) not null ,
`content` text not null ,
primary key ( `id` )
) engine = myisam character set utf8 collate utf8_general_ci
create table `test`.`article_9` (
`id` bigint( 20 ) not null ,
`subject` varchar( 200 ) not null ,
`content` text not null ,
primary key ( `id` )
) engine = myisam character set utf8 collate utf8_general_ci
 

好了10个表创建完毕了。

注意,这里的id不能设为自增,而且所有的表结构必须一致,包括结构,类型,长度,字段的顺序都必须一致那么对于这个id如何取得呢?
后面会详细说明。

现在,需要一个合并表,用于查询,创建合并表的代码:
 

复制代码 代码示例:
create table `test`.`article` (
`id` bigint( 20 ) not null ,
`subject` varchar( 200 ) not null ,
`content` text not null ,
primary key ( `id` )
) engine=mrg_myisam default charset=utf8 insert_method=0 union  =(`article_0`,`article_1`,`article_2`,`article_3`,`article_4`,`article_5`,`article_6`,`article_7`,`article_8`,`article_9`);

注意,合并表也必须和前面的表有相同的结构,类型,长度,包括字段的顺序都必须一致这里的insert_method=0表示不允许对本表进行insert操作。

当需要查询时,可以只对article这个表进行操作就可以了,即这个表仅仅只能进行select操作,那么对于插入也就是insert操作应该如何来搞呢,首先就是获取唯一的id了,这里需要一个表来专门创建id,代码:
 

复制代码 代码示例:
create table `test`.`create_id` (
`id` bigint( 20 ) not null auto_increment primary key
) engine = myisam

当需要插入数据时,必须由这个表来产生id值,php代码的方法如下:
 

复制代码 代码示例:
db->query($sql);
return $this->db->insertid();
}
?>

假设要插入一条数据了,代码:
 

复制代码 代码示例:
get_ai_id();
$table_name = $this->get_table_name($id);
$sql = "insert into {$table_name} (id,subject,content) values('{$id}','测试标题','测试内容')";
$this->db->query($sql);
}
/**
* 用于根据id获取表名
*/
function get_table_name($id) {
return 'article_'.intval($id)%10;
}
?>
 

先获取id,然后根据id获取应该插入到哪个表,然后就很简单了。
对于update的操作,无非是有了id,然后获取表名,然后进行update操作就好了。