<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>i am jack's design &#187; MySQL</title>
	<atom:link href="http://www.iamjacksdesign.com/blog/category/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.iamjacksdesign.com/blog</link>
	<description>thoughts on freelancing and web development</description>
	<lastBuildDate>Fri, 16 Jul 2010 17:28:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Copy MySQL Table Structure &amp; Data</title>
		<link>http://www.iamjacksdesign.com/blog/copy-mysql-table-structure-data/</link>
		<comments>http://www.iamjacksdesign.com/blog/copy-mysql-table-structure-data/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 05:52:20 +0000</pubDate>
		<dc:creator>Link</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.iamjacksdesign.com/blog/?p=340</guid>
		<description><![CDATA[Here&#8217;s a quick hit set of MySQL command-line instructions that will take create a new table in your database with the structure of an existing table and then duplicate the content as well:
CREATE TABLE new_stuff LIKE old_stuff;
INSERT new_stuff SELECT * FROM old_stuff;

This is a great and quick way to make dummy tables of data for [...]<p>a</p>
]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick hit set of MySQL command-line instructions that will take create a new table in your database with the structure of an existing table and then duplicate the content as well:</p>
<pre name="code" class="csharp:nogutter">CREATE TABLE new_stuff LIKE old_stuff;
INSERT new_stuff SELECT * FROM old_stuff;
</pre>
<p>This is a great and quick way to make dummy tables of data for testing purposes or for making regular table backups inside your own database for easy comparison or a million other uses that come up every day when working with databases.</p>
<p>a</p>
<img src="http://www.iamjacksdesign.com/blog/?ak_action=api_record_view&id=340&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.iamjacksdesign.com/blog/copy-mysql-table-structure-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL 5 Hates Your Left Joins</title>
		<link>http://www.iamjacksdesign.com/blog/mysql-5-hates-your-left-joins/</link>
		<comments>http://www.iamjacksdesign.com/blog/mysql-5-hates-your-left-joins/#comments</comments>
		<pubDate>Wed, 15 Nov 2006 19:54:09 +0000</pubDate>
		<dc:creator>Link</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.iamjacksdesign.com/blog/mysql-5-hates-your-left-joins/</guid>
		<description><![CDATA[When you upgrade MySQL from 4 to 5 there&#8217;s a decent chance you&#8217;re going to be seeing some Error #1054 action on any query with a left join.
There&#8217;s a description and solution available at CodingForums.com.
a
<p>a</p>
]]></description>
			<content:encoded><![CDATA[<p>When you upgrade MySQL from 4 to 5 there&#8217;s a decent chance you&#8217;re going to be seeing some Error #1054 action on any query with a left join.</p>
<p>There&#8217;s a description and solution available at <a href="http://www.codingforums.com/showthread.php?t=71431">CodingForums.com</a>.</p>
<p>a</p>
<img src="http://www.iamjacksdesign.com/blog/?ak_action=api_record_view&id=12&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.iamjacksdesign.com/blog/mysql-5-hates-your-left-joins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
