-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
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
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 ( '
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