<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; An Important Part of Most SELECT statement &#8211; WHERE clause &#8211; Quiz &#8211; Puzzle &#8211; 4 of 31</title>
	<atom:link href="http://blog.sqlauthority.com/2012/01/05/sql-server-an-important-part-of-most-select-statement-where-clause-quiz-puzzle-4-of-31/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2012/01/05/sql-server-an-important-part-of-most-select-statement-where-clause-quiz-puzzle-4-of-31/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Wed, 22 May 2013 19:03:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #010 &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2012/01/05/sql-server-an-important-part-of-most-select-statement-where-clause-quiz-puzzle-4-of-31/#comment-403911</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #010 &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 05 Jan 2013 01:32:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=16550#comment-403911</guid>
		<description><![CDATA[[...] An Important Part of Most SELECT statement – WHERE clause – Quiz – Puzzle – 4 of 31 [...]]]></description>
		<content:encoded><![CDATA[<p>[...] An Important Part of Most SELECT statement – WHERE clause – Quiz – Puzzle – 4 of 31 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Madhur Jain</title>
		<link>http://blog.sqlauthority.com/2012/01/05/sql-server-an-important-part-of-most-select-statement-where-clause-quiz-puzzle-4-of-31/#comment-232579</link>
		<dc:creator><![CDATA[Madhur Jain]]></dc:creator>
		<pubDate>Fri, 06 Jan 2012 19:38:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=16550#comment-232579</guid>
		<description><![CDATA[SELECT * 
  FROM [AdventureWorks].[Person].[Contact]
  Where FirstName like &#039;[A-J]%&#039;]]></description>
		<content:encoded><![CDATA[<p>SELECT *<br />
  FROM [AdventureWorks].[Person].[Contact]<br />
  Where FirstName like &#8216;[A-J]%&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Piyoosh</title>
		<link>http://blog.sqlauthority.com/2012/01/05/sql-server-an-important-part-of-most-select-statement-where-clause-quiz-puzzle-4-of-31/#comment-231819</link>
		<dc:creator><![CDATA[Piyoosh]]></dc:creator>
		<pubDate>Thu, 05 Jan 2012 11:36:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=16550#comment-231819</guid>
		<description><![CDATA[Question:

How can you write a WHERE Clause to search names between A-J?
Actually it should names starts with characters between A and J.

Answer :

Where ASCII(Left(Name,1)) Between ASCII(&#039;A&#039;) AND ASCII(&#039;J&#039;)
Note :- it is case sensitive]]></description>
		<content:encoded><![CDATA[<p>Question:</p>
<p>How can you write a WHERE Clause to search names between A-J?<br />
Actually it should names starts with characters between A and J.</p>
<p>Answer :</p>
<p>Where ASCII(Left(Name,1)) Between ASCII(&#8216;A&#8217;) AND ASCII(&#8216;J&#8217;)<br />
Note :- it is case sensitive</p>
]]></content:encoded>
	</item>
</channel>
</rss>
