<?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>double quoted &#8211; Database Research &amp; Development</title>
	<atom:link href="https://www.dbrnd.com/tag/double-quoted/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.dbrnd.com</link>
	<description>BIGData &#124; NoSQL &#124; MSSQL &#124; MySQL &#124; PostgreSQL</description>
	<lastBuildDate>Sat, 23 Sep 2017 21:43:13 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.4</generator>
	<item>
		<title>PostgreSQL: Why identifiers are Case-Sensitive</title>
		<link>https://www.dbrnd.com/2015/10/postgresql-why-identifiers-are-case-sensitive/</link>
					<comments>https://www.dbrnd.com/2015/10/postgresql-why-identifiers-are-case-sensitive/#comments</comments>
		
		<dc:creator><![CDATA[Anvesh Patel]]></dc:creator>
		<pubDate>Sat, 24 Oct 2015 16:08:38 +0000</pubDate>
				<category><![CDATA[PostgreSQL]]></category>
		<category><![CDATA[Anvesh Patel]]></category>
		<category><![CDATA[case-sensitive]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[database research and development]]></category>
		<category><![CDATA[dbrnd]]></category>
		<category><![CDATA[double quoted]]></category>
		<category><![CDATA[plpgsql]]></category>
		<category><![CDATA[Postgres Query]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[PostgreSQL Administrator]]></category>
		<category><![CDATA[PostgreSQL Error]]></category>
		<category><![CDATA[PostgreSQL Programming]]></category>
		<category><![CDATA[PostgreSQL Tips and Tricks]]></category>
		<guid isPermaLink="false">https://www.dbrnd.com/?p=935</guid>

					<description><![CDATA[Guys, this is one of the important discussion of PostgreSQL. All identifiers, including column name, are Case-Sensitive in PostgreSQL? Yes: when you define identifier in the double-quote, it is a Case-Sensitive. No: when you do not use double-quote for an identifier, it is not a Case-Sensitive. For example: With double-quoted: [crayon-6aa4acfac8721737414659/] Without double-quoted: [crayon-6aa4acfac8725222700731/] My [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fwww.dbrnd.com%2F2015%2F10%2Fpostgresql-why-identifiers-are-case-sensitive%2F&amp;linkname=PostgreSQL%3A%20Why%20identifiers%20are%20Case-Sensitive" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_twitter" href="https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Fwww.dbrnd.com%2F2015%2F10%2Fpostgresql-why-identifiers-are-case-sensitive%2F&amp;linkname=PostgreSQL%3A%20Why%20identifiers%20are%20Case-Sensitive" title="Twitter" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Fwww.dbrnd.com%2F2015%2F10%2Fpostgresql-why-identifiers-are-case-sensitive%2F&amp;linkname=PostgreSQL%3A%20Why%20identifiers%20are%20Case-Sensitive" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_pinterest" href="https://www.addtoany.com/add_to/pinterest?linkurl=https%3A%2F%2Fwww.dbrnd.com%2F2015%2F10%2Fpostgresql-why-identifiers-are-case-sensitive%2F&amp;linkname=PostgreSQL%3A%20Why%20identifiers%20are%20Case-Sensitive" title="Pinterest" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_reddit" href="https://www.addtoany.com/add_to/reddit?linkurl=https%3A%2F%2Fwww.dbrnd.com%2F2015%2F10%2Fpostgresql-why-identifiers-are-case-sensitive%2F&amp;linkname=PostgreSQL%3A%20Why%20identifiers%20are%20Case-Sensitive" title="Reddit" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_pocket" href="https://www.addtoany.com/add_to/pocket?linkurl=https%3A%2F%2Fwww.dbrnd.com%2F2015%2F10%2Fpostgresql-why-identifiers-are-case-sensitive%2F&amp;linkname=PostgreSQL%3A%20Why%20identifiers%20are%20Case-Sensitive" title="Pocket" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.dbrnd.com%2F2015%2F10%2Fpostgresql-why-identifiers-are-case-sensitive%2F&#038;title=PostgreSQL%3A%20Why%20identifiers%20are%20Case-Sensitive" data-a2a-url="https://www.dbrnd.com/2015/10/postgresql-why-identifiers-are-case-sensitive/" data-a2a-title="PostgreSQL: Why identifiers are Case-Sensitive"></a></p><p>Guys, this is one of the important discussion of PostgreSQL.<br />
All identifiers, including column name, are Case-Sensitive in PostgreSQL?</p>
<blockquote><p>Yes: when you define identifier in the double-quote, it is a Case-Sensitive.<br />
No: when you do not use double-quote for an identifier, it is not a Case-Sensitive.</p></blockquote>
<p>For example:<br />
<strong>With double-quoted:</strong></p>
<pre class="crayon-plain-tag">CREATE TABLE "Test" (rno integer);
SELECT *FROM Test /*True...*/
SELECT *FROM test; /*False...not work*/</pre> </p>
<p><strong>Without double-quoted:</strong></p>
<pre class="crayon-plain-tag">CREATE TABLE Test(rno integer);
SELECT *FROM Test /*True...*/
SELECT *FROM teST /*True...*/
SELECT *FROM test /*True...*/</pre> </p>
<blockquote><p>My advice: Never use double-quoted for any identifiers. Otherwise, you will face the problem of case-sensitivity.<br />
When you do not use double-quoted, PostgreSQL internally store all identifiers in small latter and you can access those all identifiers in any case. </p></blockquote>
<p>When you create your table using PGAdmin UI, by default it creates all identifiers with double-quoted.<br />
Always try to create your database objects by using the SQL script.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.dbrnd.com/2015/10/postgresql-why-identifiers-are-case-sensitive/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
	</channel>
</rss>
