一條語句沒法實(shí)現(xiàn)的...
創(chuàng)新互聯(lián)服務(wù)項(xiàng)目包括麻陽網(wǎng)站建設(shè)、麻陽網(wǎng)站制作、麻陽網(wǎng)頁制作以及麻陽網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢(shì)、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,麻陽網(wǎng)站推廣取得了明顯的社會(huì)效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到麻陽省份的部分城市,未來相信會(huì)繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
create table table2 select * from table1 order by id limit 1,100
create table table3 select * from table1 order by id limit 100,100
create table table4 select * from table1 order by id limit 200,100
先把導(dǎo)出表的框架 然后在分表導(dǎo)入數(shù)據(jù) 數(shù)據(jù)多的表 吧數(shù)據(jù)生成腳本來導(dǎo)入~~~~
你這樣很麻煩,還容易出錯(cuò)。
不過你說的這個(gè),你可以考慮使用一下mysql的分區(qū)表功能。
基本思想就是,一個(gè)表按照日,分成若干個(gè)分區(qū),如果查詢比如2019年7月2日的數(shù)據(jù),查詢會(huì)直接指向2019年7月2日的那個(gè)分區(qū),所以這個(gè)表最后即便幾億數(shù)據(jù),也很容易管理。并且,如果太久遠(yuǎn)的數(shù)據(jù),比如3年前的也可以備份走,并不影響這個(gè)表的正常使用。自己先看看相關(guān)內(nèi)容吧。
一條語句沒法實(shí)現(xiàn)的...
create table table2 select * from table1 order by id limit 1,100
create table table3 select * from table1 order by id limit 100,100
create table table4 select * from table1 order by id limit 200,100