<?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>Comments on: Multiple LIKE clauses in a single WHERE statement</title>
	<atom:link href="http://www.bimonkey.com/2010/01/multiple-like-clauses-in-a-single-where-statement/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bimonkey.com/2010/01/multiple-like-clauses-in-a-single-where-statement/</link>
	<description>James Beresford on Microsoft BI and Consulting in Sydney, Australia</description>
	<lastBuildDate>Mon, 06 Feb 2012 16:00:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: BI Monkey</title>
		<link>http://www.bimonkey.com/2010/01/multiple-like-clauses-in-a-single-where-statement/comment-page-1/#comment-1089</link>
		<dc:creator>BI Monkey</dc:creator>
		<pubDate>Fri, 29 Jan 2010 23:43:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.bimonkey.com/?p=723#comment-1089</guid>
		<description>This requirement came from some table generated SQL that I had to knock up, where each clause was on a seperate row of a table, and each clause may not be a LIKE - it may be an AND or a NOT EQUALS. Wrapping it up in case statement is not a world apart from just enclosing it brackets. I just liked this better.</description>
		<content:encoded><![CDATA[<p>This requirement came from some table generated SQL that I had to knock up, where each clause was on a seperate row of a table, and each clause may not be a LIKE &#8211; it may be an AND or a NOT EQUALS. Wrapping it up in case statement is not a world apart from just enclosing it brackets. I just liked this better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cade Roux</title>
		<link>http://www.bimonkey.com/2010/01/multiple-like-clauses-in-a-single-where-statement/comment-page-1/#comment-1088</link>
		<dc:creator>Cade Roux</dc:creator>
		<pubDate>Fri, 29 Jan 2010 23:05:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.bimonkey.com/?p=723#comment-1088</guid>
		<description>Why/when is this better than this?:

SELECT *
FROM [AdventureWorks].[Person].[Contact]
WHERE FirstName LIKE ‘Gusta%’ OR FirstName LIKE ‘Cath%’</description>
		<content:encoded><![CDATA[<p>Why/when is this better than this?:</p>
<p>SELECT *<br />
FROM [AdventureWorks].[Person].[Contact]<br />
WHERE FirstName LIKE ‘Gusta%’ OR FirstName LIKE ‘Cath%’</p>
]]></content:encoded>
	</item>
</channel>
</rss>

