Re: Query about SQL in PostgreSQL

From: KÖPFERL Robert <robert(dot)koepferl(at)sonorys(dot)at>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: Query about SQL in PostgreSQL
Date: 2005-04-19 09:59:58
Message-ID: ED4E30DD9C43D5118DFB00508BBBA76EB166BE@neptun.sonorys.at
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Postgres has the weird behavour to compare identifies case sensitive BUT to
downcast any non-quoted identifier inside an SQL statement.
So it is reccomended to just use lower case (for readability)

-----Original Message-----
From: Muhammad Nadeem Ashraf [mailto:nadeem_engg(at)yahoo(dot)com]
Sent: Dienstag, 19. April 2005 11:49
To: pgsql-sql(at)postgresql(dot)org
Subject: [SQL] Query about SQL in PostgreSQL

Hi,
I am new user of PostGreSQL 8.0.1. While using it i faced following issue.
As SQL is Case insensetive Language So the Uper or Lower cases are not
significant. But while using the database there is problem.
If i Create new Table with name (tblstudent) then upon SQL queries it is
fine to use Select * from tblstudent. However i face probel if i give the
name of table in Capital letters i.e. if the name is (tblStudent) then upon
using Select * from tblStudent, following error is appeard:
ERROR: relation "tblst" does not exist

And if i use the query Select * from "tblStudent" then it works fine.


Please help me out in this regard.
Nadeem

_____

Yahoo! Mail Mobile
Take
<http://us.rd.yahoo.com/mail_us/taglines/mobile/*http://mobile.yahoo.com/lea
rn/mail> Yahoo! Mail with you! Check email on your mobile phone.

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Sean Davis 2005-04-19 10:16:01 Re: Query about SQL in PostgreSQL
Previous Message Reinoud van Leeuwen 2005-04-19 09:58:58 Re: Query about SQL in PostgreSQL