| From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
|---|---|
| To: | Mike Castle <dalgoda(at)ix(dot)netcom(dot)com> |
| Cc: | pgsql-novice(at)postgresql(dot)org |
| Subject: | Re: DESC |
| Date: | 2000-11-22 19:16:53 |
| Message-ID: | 12292.974920613@sss.pgh.pa.us |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-novice |
Mike Castle <dalgoda(at)ix(dot)netcom(dot)com> writes:
> If so, is "DESCRIBE" the ANSI command that should do what \d does or does
> it serve another purpose in ANSI?
The only use of DESCRIBE that I can find in the SQL92 spec is
<describe statement> ::=
<describe input statement>
| <describe output statement>
<describe input statement> ::=
DESCRIBE INPUT <SQL statement name> <using descriptor>
<describe output statement> ::=
DESCRIBE [ OUTPUT ] <SQL statement name> <using descriptor>
Obtain information about the <select list> columns or <dynamic
parameter specification>s contained in a prepared statement.
which doesn't appear to overlap \d's functionality at all...
regards, tom lane
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Mike Castle | 2000-11-22 19:20:32 | Re: DESC |
| Previous Message | Tom Lane | 2000-11-22 19:11:49 | Re: NOTICE: Unrecognized variable client_encoding |