<?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>Whiteforest &#187; SQL</title>
	<atom:link href="http://www.whiteforest.co.uk/tag/sql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.whiteforest.co.uk</link>
	<description>Mark Robson&#039;s web development blog</description>
	<lastBuildDate>Mon, 22 Mar 2010 11:18:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Users and Permissions in MySQL</title>
		<link>http://www.whiteforest.co.uk/2009/03/users-and-permissions-in-mysql/</link>
		<comments>http://www.whiteforest.co.uk/2009/03/users-and-permissions-in-mysql/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 19:07:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.whiteforest.co.uk/?p=125</guid>
		<description><![CDATA[The best way for creating users in MySQL is by using CREATE USER or GRANT statements. Another way is by manipulating  MySQLs grant tables, but this is not recommended.
By default the superuser is root. A password must be specified for this. It is best if this is only used for superadmin purposes.
For new accounts [...]]]></description>
		<wfw:commentRss>http://www.whiteforest.co.uk/2009/03/users-and-permissions-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL &#8211; Counting Occurrances of a String</title>
		<link>http://www.whiteforest.co.uk/2008/10/sql-counting-occurrances-of-a-string/</link>
		<comments>http://www.whiteforest.co.uk/2008/10/sql-counting-occurrances-of-a-string/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 14:02:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.whiteforest.co.uk/?p=30</guid>
		<description><![CDATA[SELECT DISTINCT
person,
sum(CASE WHEN Field1 = 'String1' THEN 1 ELSE 0 END) AS [Field 1],
sum(CASE WHEN Field2 = 'String2' THEN 1 ELSE 0 END) AS [Field 2],
sum(CASE WHEN Field3 = 'String3' THEN 1 ELSE 0 END) AS [Field 3],
sum(CASE WHEN Field4 = 'String4' THEN 1 ELSE 0 END) AS [Field 4],
sum(CASE WHEN Field5 = 'String5' THEN [...]]]></description>
		<wfw:commentRss>http://www.whiteforest.co.uk/2008/10/sql-counting-occurrances-of-a-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
