<?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>The World Of Gavin &#187; sql</title>
	<atom:link href="http://www.gavinwillingham.com/tag/sql/feed" rel="self" type="application/rss+xml" />
	<link>http://www.gavinwillingham.com</link>
	<description>My opinions on things I have opinions on</description>
	<lastBuildDate>Fri, 04 Jun 2010 14:23:01 +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>MySQL</title>
		<link>http://www.gavinwillingham.com/mysql.html</link>
		<comments>http://www.gavinwillingham.com/mysql.html#comments</comments>
		<pubDate>Fri, 20 Nov 2009 12:15:45 +0000</pubDate>
		<dc:creator>gavin</dc:creator>
				<category><![CDATA[Content]]></category>
		<category><![CDATA[datatypes]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://www.gavinwillingham.com/?p=460</guid>
		<description><![CDATA[Useful Links

MySQL 5.0 datatype docs

]]></description>
			<content:encoded><![CDATA[<h2>Useful Links</h2>
<ul>
<li>MySQL 5.0 <a title="MySQL 5.0 datatypes" href="http://dev.mysql.com/doc/refman/5.0/en/data-types.html">datatype</a> docs</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.gavinwillingham.com/mysql.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Databases</title>
		<link>http://www.gavinwillingham.com/databases.html</link>
		<comments>http://www.gavinwillingham.com/databases.html#comments</comments>
		<pubDate>Fri, 20 Nov 2009 12:11:54 +0000</pubDate>
		<dc:creator>gavin</dc:creator>
				<category><![CDATA[Content]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://www.gavinwillingham.com/?p=368</guid>
		<description><![CDATA[
DB2
MySQL
General SQL stuff

]]></description>
			<content:encoded><![CDATA[<ul>
<li><a title="DB2" href="db2.html">DB2</a></li>
<li><a title="MySQL" href="mysql.html">MySQL</a></li>
<li>General <a title="SQL" href="sql.html">SQL</a> stuff</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.gavinwillingham.com/databases.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL</title>
		<link>http://www.gavinwillingham.com/sql.html</link>
		<comments>http://www.gavinwillingham.com/sql.html#comments</comments>
		<pubDate>Sat, 26 Sep 2009 16:08:29 +0000</pubDate>
		<dc:creator>gavin</dc:creator>
				<category><![CDATA[Content]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[insert]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.gavinwillingham.com/?p=158</guid>
		<description><![CDATA[Insert
Inserting multiple rows in one statement
You can (on DB2 and MySQL) insert multiple rows using only 1 SQL statement.
INSERT INTO
	tableName (field1, field2, field3)
VALUES
	(record1value1, record1value2, record1value3),
	(record2value1, record2value2, record2value3)
	...
	(recordnvalue1, recordnvalue2, recordnvalue3);

]]></description>
			<content:encoded><![CDATA[<h2>Insert</h2>
<h3>Inserting multiple rows in one statement</h3>
<p>You can (on <a title="DB2" href="db2.html">DB2</a> and MySQL) insert multiple rows using only 1 SQL statement.</p>
<pre>INSERT INTO
	tableName (field1, field2, field3)
VALUES
	(record1value1, record1value2, record1value3),
	(record2value1, record2value2, record2value3)
	...
	(recordnvalue1, recordnvalue2, recordnvalue3);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.gavinwillingham.com/sql.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
