<?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>Coder Circle &#187; Database</title>
	<atom:link href="http://www.codercircle.com/category/database/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codercircle.com</link>
	<description>Your Path for Knowledge to Wisdom</description>
	<lastBuildDate>Tue, 04 May 2010 01:26:21 +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>Arranging output in SQL</title>
		<link>http://www.codercircle.com/database/arranging_output_in_sql/</link>
		<comments>http://www.codercircle.com/database/arranging_output_in_sql/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 10:06:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[arranging output in select]]></category>
		<category><![CDATA[order by clause in oracle]]></category>

		<guid isPermaLink="false">http://www.codercircle.com/index.php/2008/01/25/arranging_output_in_sql/</guid>
		<description><![CDATA[Remember ORDER BY is the last clause in the SELECT statement, which arranges the order after the SQL data are fetched
The ORDER BY clause arranges the  output of a SELECT statement in a particular order. It can be ascending or descending.
SELECT EMPNO,ENAME,SAL FROM EMP ORDER BY SAL;
 
The above SQL will display the result in the [...]]]></description>
		<wfw:commentRss>http://www.codercircle.com/database/arranging_output_in_sql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Between, In Operators in SQL</title>
		<link>http://www.codercircle.com/database/between_in_operators_in_sql/</link>
		<comments>http://www.codercircle.com/database/between_in_operators_in_sql/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 10:05:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://www.codercircle.com/index.php/2008/01/25/between_in_operators_in_sql/</guid>
		<description><![CDATA[This lesson will describe the usage of IN, Between Operators in Oracle
At times usage of OR, AND becomes cumbersome. Oracle has facilitated some other operators
BETWEEN
SELECT ENAME,JOB,SAL FROM EMP
WHERE SAL BETWEEN 1500 AND 3000;
is exactly equivalent to
SELECT ENAME,JOB,SAL FROM EMP
WHERE SAL&#62; 1500 AND SAL &#60; 3000;
Between can replace complicated AND operators
IN
SELECT EMPNO,ENAME,JOB,DEPTNO FROM EMP
WHERE JOB IN [...]]]></description>
		<wfw:commentRss>http://www.codercircle.com/database/between_in_operators_in_sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>And &amp; OR Operators in SQL</title>
		<link>http://www.codercircle.com/database/and_or_operators_in_sql/</link>
		<comments>http://www.codercircle.com/database/and_or_operators_in_sql/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 10:03:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[AND]]></category>
		<category><![CDATA[OR]]></category>
		<category><![CDATA[SELECT]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.codercircle.com/index.php/2008/01/25/and_or_operators_in_sql/</guid>
		<description><![CDATA[How to and where to use AND and OR Operators in Select Statement
We should remember a fundamental concept. AND restricts further and OR loosens the restrictions in the result set
SELECT ENAME, SAL FROM EMP WHERE DEPTNO=10 AND SAL&#62;1500;
The above statement will display the restricted set of rows whose department no is 10 and SAL is [...]]]></description>
		<wfw:commentRss>http://www.codercircle.com/database/and_or_operators_in_sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handling Date Values in SQL</title>
		<link>http://www.codercircle.com/database/handling_date_values_in_sql/</link>
		<comments>http://www.codercircle.com/database/handling_date_values_in_sql/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 10:02:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[date in Oracle]]></category>
		<category><![CDATA[date in Select]]></category>
		<category><![CDATA[date in SQL]]></category>

		<guid isPermaLink="false">http://www.codercircle.com/index.php/2008/01/25/handling_date_values_in_sql/</guid>
		<description><![CDATA[How to handle date values in Oracle
SELECT EMPNO,ENAME,JOB,MGR,HIREDATE,SAL FROM EMP
WHERE HIREDATE &#60;’01-JUN-81’;
Date is treated as literals
]]></description>
		<wfw:commentRss>http://www.codercircle.com/database/handling_date_values_in_sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>embed a message in SQL</title>
		<link>http://www.codercircle.com/database/embed_a_message_in_sql/</link>
		<comments>http://www.codercircle.com/database/embed_a_message_in_sql/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 10:01:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[embed message]]></category>
		<category><![CDATA[Select clause]]></category>

		<guid isPermaLink="false">http://www.codercircle.com/index.php/2008/01/25/embed_a_message_in_sql/</guid>
		<description><![CDATA[How to embed a message in SQL
SELECT ENAME&#124;&#124;’ ‘&#124;&#124;’is in the position of ’&#124;&#124;’ ‘&#124;&#124;JOB&#124;&#124;’ ‘&#124;&#124;’and his earning is &#124;&#124; ‘ ‘&#124;&#124;SAL “Employee Details” FROM EMP;
Look at the usage of quodes (&#8216;) and the concatination symbols &#124;&#124;
The blank spaces have been mentioned within quodes to display the required additional blanks between words.
]]></description>
		<wfw:commentRss>http://www.codercircle.com/database/embed_a_message_in_sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
