mysql list 设计,MySQL老旧分表设计

该分表是纯物理分表。

create table goods_a(

id int auto_increment,

name varchar(32) not null default '',

price int not null default  0,

pubdate datetime not null default '0000-00-00',

primary key(id)

)  engine  =Myisam charset=utf8;

427efa000900

create table goods_b(

id int auto_increment,

name varchar(32) not null default '',

price int not null default  0,

pubdate datetime not null default '0000-00-00',

primary key(id)

)  engine  =Myisam charset=utf8;

427efa000900

create table goods_c(

id int auto_increment,

name varchar(32) not null default '',

price int not null default  0,

pubdate datetime not null default '0000-00-00',

primary key(id)

)  engine  =Myisam charset=utf8;

427efa000900

create table goods_d(

id int auto_increment,

name varchar(32) not null default '',

price int not null default  0,

pubdate datetime not null default '0000-00-00',

primary key(id)

)  engine  =Myisam charset=utf8;

427efa000900

create table goods_e(

id int auto_increment,

name varchar(32) not null default '',

price int not null default  0,

pubdate datetime not null default '0000-00-00',

primary key(id)

)  engine  =Myisam charset=utf8;

427efa000900

表的物理结构

427efa000900

根据id获得指定一条记录信息

为数据表分区数据的原则就是平均

1)根据id获得指定的一条记录信息

---到指定的分表获得指定的记录信息

$yu=$id%5;

$sql="select*from goods_$yu where id =$id";

2)给指定的分表写入指定的记录信息

$maxId="select max(id)  from goods_fu";

$trueid=$maxId+1;

$yu=$trueid%5;

$sql="insert into goods_$yu values(.....)";

$sql="insert into goods_fu values($trueid)";

思路:获得数据表内部最大主键id值

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值