<?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>Coderguy's Blog &#187; MySQL</title>
	<atom:link href="http://www.coderguy.com/category/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.coderguy.com</link>
	<description>Thoughts on code</description>
	<lastBuildDate>Mon, 19 Jul 2010 15:22:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Show Forgein Keys in MySQL</title>
		<link>http://www.coderguy.com/2009/11/show-forgein-keys-in-mysql/</link>
		<comments>http://www.coderguy.com/2009/11/show-forgein-keys-in-mysql/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 15:20:19 +0000</pubDate>
		<dc:creator>coderguy</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[foreign keys]]></category>

		<guid isPermaLink="false">http://www.coderguy.com/?p=52</guid>
		<description><![CDATA[Here is a handy query I found the mysql reference manual for how to see all the foreign keys in a database: SELECT ke.referenced_table_name parent, ke.table_name child, ke.constraint_name FROM information_schema.KEY_COLUMN_USAGE ke WHERE ke.referenced_table_name IS NOT NULL ORDER BY ke.referenced_table_name;]]></description>
			<content:encoded><![CDATA[<p>Here is a handy query I found the mysql reference manual for how to see all the foreign keys in a database:</p>
<pre>
SELECT ke.referenced_table_name parent, ke.table_name child, ke.constraint_name
FROM information_schema.KEY_COLUMN_USAGE ke
WHERE ke.referenced_table_name IS NOT NULL
ORDER BY ke.referenced_table_name;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.coderguy.com/2009/11/show-forgein-keys-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Refresh MySQL Autocomplete: \#</title>
		<link>http://www.coderguy.com/2009/06/refresh-mysql-autocomplete/</link>
		<comments>http://www.coderguy.com/2009/06/refresh-mysql-autocomplete/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 20:16:30 +0000</pubDate>
		<dc:creator>coderguy</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[mysql autocomplete]]></category>

		<guid isPermaLink="false">http://www.coderguy.com/?p=32</guid>
		<description><![CDATA[Here is nifty little tip.  If you need to have your command line MySQL autocomplete enabled or refresh the just type \# at the command line. mysql&#62;\# This is great for those times when you creating a lot of tables.]]></description>
			<content:encoded><![CDATA[<p>Here is nifty little tip.  If you need to have your command line MySQL autocomplete enabled or refresh the just type \# at the command line.</p>
<p>mysql&gt;\#</p>
<p>This is great for those times when you creating a lot of tables.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coderguy.com/2009/06/refresh-mysql-autocomplete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
