Re: Why can't I ......... - Mailing list pgsql-sql

From Josh Berkus
Subject Re: Why can't I .........
Date
Msg-id web-98036@davinci.ethosmedia.com
Whole thread Raw
In response to Why can't I .........  (mbenzid@yahoo.de (Mounir Benzid))
Responses Re: Why can't I .........  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-sql
Mounir,

> -- do a join between two databases within the same installation.
>
> ... where db1.table1.userid = db2.table2.userid

Because this is not supported on PostgreSQL.  There are a number of
reasons, and it may never be supported because there are drawbacks to
allowing databases to reference each other (mainly security).


> -- use labels to name columns in this way
>
> ... select col1 userid, col2 name from ...  (instead of using AS)

Because AS is the ANSI SQL 92 standard.  And we like standards.

> -- do an update with full referenced colomns
>
> ... update table1 set table1.col1=value

Because UPDATES, per the SQL 92 standard, are on one table only.  Thus
any refenced columns *must* belong to that table, and if so, why name
it?

-Josh Berkus


______AGLIO DATABASE SOLUTIONS___________________________
                                       Josh Berkus
  Complete information technology      josh@agliodbs.com
   and data management solutions       (415) 565-7293
  for law firms, small businesses        fax 621-2533
    and non-profit organizations.      San Francisco

Attachment

pgsql-sql by date:

Previous
From: Stephan Szabo
Date:
Subject: Re: Are circular REFERENCES possible ?
Next
From: Jan Wieck
Date:
Subject: Re: Are circular REFERENCES possible ?