Re: REFERENCES error message complaint, suggestion

From: "Chris Boget" <chris(at)wild(dot)net>
To: <weigelt(at)metux(dot)de>, "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: <pgsql-general(at)postgresql(dot)org>
Subject: Re: REFERENCES error message complaint, suggestion
Date: 2004-03-05 15:53:50
Message-ID: 024001c402ca$16aaacf0$8c01a8c0@entropy
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

> How can they have no distinction? Suppose I write
> select 'col' from tab;
> select "col" from tab;
> If there is a column tab.col, what am I going to get in each case?

select 'col' from tab;

+-----+
| col |
+-----+
| col |
| col |
| col |
+-----+
3 rows found in set (0.00 sec)

select "col" from tab;
+-----+
| col |
+-----+
| col |
| col |
| col |
+-----+
3 rows found in set (0.00 sec)

MySQL is definitely *not* 100% SQL92 compliant.

Chris

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message phil campaigne 2004-03-05 15:58:00 Setting up Postgresql on Linux
Previous Message Shridhar Daithankar 2004-03-05 15:50:29 PHP on slackware