<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>评论：mysql分表的3种方法</title>
	<atom:link href="http://blog.51yip.com/mysql/949.html/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.51yip.com/mysql/949.html</link>
	<description>－－一步，二步，三步，N步，二行脚印</description>
	<lastBuildDate>Tue, 07 Jun 2022 01:26:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>来自：万大宝</title>
		<link>http://blog.51yip.com/mysql/949.html/comment-page-1#comment-18079</link>
		<dc:creator>万大宝</dc:creator>
		<pubDate>Tue, 21 Apr 2020 11:24:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.51yip.com/?p=949#comment-18079</guid>
		<description>留个脚印</description>
		<content:encoded><![CDATA[<p>留个脚印</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：yyy1007</title>
		<link>http://blog.51yip.com/mysql/949.html/comment-page-1#comment-17780</link>
		<dc:creator>yyy1007</dc:creator>
		<pubDate>Tue, 10 Jul 2018 09:10:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.51yip.com/?p=949#comment-17780</guid>
		<description>没怎么搞懂这么分表的作用在哪里，查询的也是全部的数据啊</description>
		<content:encoded><![CDATA[<p>没怎么搞懂这么分表的作用在哪里，查询的也是全部的数据啊</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：ssxsqx</title>
		<link>http://blog.51yip.com/mysql/949.html/comment-page-1#comment-17752</link>
		<dc:creator>ssxsqx</dc:creator>
		<pubDate>Thu, 26 Apr 2018 03:55:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.51yip.com/?p=949#comment-17752</guid>
		<description>创建完alluser表无法打开：
1168 - unable to open underlying table which is differently defined or of non-MyISAM type or doesn&#039;t exist</description>
		<content:encoded><![CDATA[<p>创建完alluser表无法打开：<br />
1168 - unable to open underlying table which is differently defined or of non-MyISAM type or doesn't exist</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：ssxsqx</title>
		<link>http://blog.51yip.com/mysql/949.html/comment-page-1#comment-17751</link>
		<dc:creator>ssxsqx</dc:creator>
		<pubDate>Thu, 26 Apr 2018 03:45:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.51yip.com/?p=949#comment-17751</guid>
		<description>映哥，alluser表里的数据既然也是user表里的全部数据，那这不是没分表么？</description>
		<content:encoded><![CDATA[<p>映哥，alluser表里的数据既然也是user表里的全部数据，那这不是没分表么？</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：ssxsqx</title>
		<link>http://blog.51yip.com/mysql/949.html/comment-page-1#comment-17749</link>
		<dc:creator>ssxsqx</dc:creator>
		<pubDate>Thu, 26 Apr 2018 03:31:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.51yip.com/?p=949#comment-17749</guid>
		<description>映哥，“这样我就成功的将一张user表，分成了二个表，这个时候有一个问题，代码中的sql语句怎么办，以前是一张表，现在变成二张表了，代码改动很大，这样给程序员带来了很大的工作量，有没有好的办法解决这一点呢？办法是把以前的user表备份一下，然后删除掉，上面的操作中我建立了一个alluser表，只把这个alluser表的表名改成user就行了。但是，不是所有的mysql操作都能用的”这个我没看懂，user表删除了，新建了alluser表，alluser表里的数据是什么？还有代码的sql还是查询的原来user表，不还得改代码么？</description>
		<content:encoded><![CDATA[<p>映哥，“这样我就成功的将一张user表，分成了二个表，这个时候有一个问题，代码中的sql语句怎么办，以前是一张表，现在变成二张表了，代码改动很大，这样给程序员带来了很大的工作量，有没有好的办法解决这一点呢？办法是把以前的user表备份一下，然后删除掉，上面的操作中我建立了一个alluser表，只把这个alluser表的表名改成user就行了。但是，不是所有的mysql操作都能用的”这个我没看懂，user表删除了，新建了alluser表，alluser表里的数据是什么？还有代码的sql还是查询的原来user表，不还得改代码么？</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：ssxsqx</title>
		<link>http://blog.51yip.com/mysql/949.html/comment-page-1#comment-17748</link>
		<dc:creator>ssxsqx</dc:creator>
		<pubDate>Tue, 24 Apr 2018 10:03:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.51yip.com/?p=949#comment-17748</guid>
		<description>楼主，第三个方案“利用merge存储引擎来实现分表”中具体的a、b、c、d也没提到用merge引擎分表啊！您能再具体解释一下么？不好意思，我实在没看懂。</description>
		<content:encoded><![CDATA[<p>楼主，第三个方案“利用merge存储引擎来实现分表”中具体的a、b、c、d也没提到用merge引擎分表啊！您能再具体解释一下么？不好意思，我实在没看懂。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：老秦人</title>
		<link>http://blog.51yip.com/mysql/949.html/comment-page-1#comment-17737</link>
		<dc:creator>老秦人</dc:creator>
		<pubDate>Mon, 12 Mar 2018 07:52:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.51yip.com/?p=949#comment-17737</guid>
		<description>跨表间的关联还是有问题啊</description>
		<content:encoded><![CDATA[<p>跨表间的关联还是有问题啊</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：peterW</title>
		<link>http://blog.51yip.com/mysql/949.html/comment-page-1#comment-17395</link>
		<dc:creator>peterW</dc:creator>
		<pubDate>Wed, 02 Mar 2016 03:31:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.51yip.com/?p=949#comment-17395</guid>
		<description>膜拜，博主，搞个RSS订阅功能呗</description>
		<content:encoded><![CDATA[<p>膜拜，博主，搞个RSS订阅功能呗</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：无意义</title>
		<link>http://blog.51yip.com/mysql/949.html/comment-page-1#comment-17301</link>
		<dc:creator>无意义</dc:creator>
		<pubDate>Wed, 14 Oct 2015 01:51:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.51yip.com/?p=949#comment-17301</guid>
		<description>无意义.</description>
		<content:encoded><![CDATA[<p>无意义.</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：yonghu</title>
		<link>http://blog.51yip.com/mysql/949.html/comment-page-1#comment-17248</link>
		<dc:creator>yonghu</dc:creator>
		<pubDate>Mon, 17 Aug 2015 07:11:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.51yip.com/?p=949#comment-17248</guid>
		<description>mysql 分表用MRG_MyISAM    每次创建字表怎么自动更新主表中的union？</description>
		<content:encoded><![CDATA[<p>mysql 分表用MRG_MyISAM    每次创建字表怎么自动更新主表中的union？</p>
]]></content:encoded>
	</item>
</channel>
</rss>
