mysql分表的詳細設計與應用

2021-12-29 21:42:25 字數 4057 閱讀 7615

mysql分表的詳細設計與應用

一般來說,當我們的資料庫的資料超過了100w記錄的時候就應該考慮分表或者分割槽了,這次我來詳細說說分表的一些方法。目前我所知道的方法都是myisam的,innodb如何做分表並且保留事務和外來鍵,我還不是很了解。

首先,我們需要想好到底分多少個表,前提當然是滿足應用。這裡我使用了乙個比較簡單的分表方法,就是根據自增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**的方法如下

function get_ai_id()  

好了,現在假設我們要插入一條資料了,應該怎麼操作呢?還是繼續看**吧

function new_article() (id,subject,content) values('','測試標題','測試內容')"; 

$this->db->query($sql); 

} /** 

* 用於根據id獲取表名 

*/ function get_table_name($id)  

其實很簡單的,對吧,就是先獲取id,然後根據id獲取應該插入到哪個表,然後就很簡單了。

對於update的操作我想應該不需要再說了吧,無非是有了id,然後獲取表名,然後進行update操作就好了。

分庫與分表設計

垂直 縱向 切分 把單一的表拆分成多個表,並分散到不同的資料庫 主機 上。水平 橫向 切分 根據表中資料的邏輯關係,將同乙個表中的資料按照某種條件拆分到多台資料庫 主機 上。乙個資料庫由多個表構成,每個表對應不同的業務,垂直切分是指按照業務將表進行分類,將其分布到不同的資料庫上,這樣就將資料分擔到了...

mysql分表與分割槽

1 首先得確認mysql是否支援分割槽功能,這可以通過命令 show plugins 檢視如果顯示如下,則說明你的mysql版本支援partition 2 innodb一般用於具有事務和外來鍵的場合,它預設將所有的表資料和索引檔案放在乙個名為ibdata1的檔案中,屬於共享表空間。myisam預設每...

mysql表的設計 mysql,表設計

閒著沒事搞了一下,歡迎指教。使用者表 create table usr uid int 11 not null,name char 10 default null,primary key uid engine innodb default charset utf8 吃飯記錄表 create tabl...