Posted by Nina on 12/09/05 14:33
Hi all,
I am new here and also new for using psql, I hope I joined the correct
google group to ask question ;-)
Here we go~
I create one table:
CREATE TABLE positions (
id serial NOT NULL,
name integer
)
Then I type:
\d++
then it shows:
public | positions | table | database1 |
public | positions_id_seq | sequence | database1 |
MY Question is:
which command in psql will only give me output:
public | positions | table | database1 |
Because I don't want :
public | positions_id_seq | sequence | database1 |
Thanks~
Navigation:
[Reply to this message]
|