FW: [ADMIN] tablename.columnname support

2000-09-16 Thread vijayendra mohan agrawal
-Original Message- From: Vijayendra M Agrawal [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 17, 2000 11:24 AM To: The Hermit Hacker Subject: RE: [ADMIN] tablename.columnname support Dear Hermit, I didn't ask the question just for the sake of asking... The design in my module is

Re: [ADMIN] tablename.columnname support

2000-09-16 Thread Jerome Slangen
The Hermit Hacker wrote: > > On Sat, 16 Sep 2000, vijayendra mohan agrawal wrote: > > > Hi all, > > > > say, we have a table created by : > > create table a ( a char(11), b char(22) ); > > > > For adding data into table 'a', ORACLE supports column name format as > > tablename.columnname as follo

Re: [ADMIN] tablename.columnname support

2000-09-16 Thread The Hermit Hacker
On Sat, 16 Sep 2000, vijayendra mohan agrawal wrote: > Hi all, > > say, we have a table created by : > create table a ( a char(11), b char(22) ); > > For adding data into table 'a', ORACLE supports column name format as > tablename.columnname as follows : > insert into a ( a.a, a.b ) values ( '

[ADMIN] tablename.columnname support

2000-09-16 Thread vijayendra mohan agrawal
Hi all, say, we have a table created by : create table a ( a char(11), b char(22) ); For adding data into table 'a', ORACLE supports column name format as tablename.columnname as follows : insert into a ( a.a, a.b ) values ( 'xyz', 'abc') ; But, PostGreSQL doesn't support... It gives parse erro