Mar 6, 2003 #1 djam Technical User Nov 15, 2002 223 CA Is there something similar to DESCRIBE in postgres? " ahhh computers, how they made our lives much simpler "
Is there something similar to DESCRIBE in postgres? " ahhh computers, how they made our lives much simpler "
Mar 6, 2003 #2 danielhozac Programmer Aug 21, 2001 2,058 SE If you are using the psql interactive prompt, [tt]\d[/tt] should do what you want. //Daniel Upvote 0 Downvote
Mar 6, 2003 Thread starter #3 djam Technical User Nov 15, 2002 223 CA I thought DESCRIBE, describes the columns in the table, I would like to view the datatypes of each field. thanks " ahhh computers, how they made our lives much simpler " Upvote 0 Downvote
I thought DESCRIBE, describes the columns in the table, I would like to view the datatypes of each field. thanks " ahhh computers, how they made our lives much simpler "
Mar 6, 2003 #4 rosenk Programmer Jan 16, 2003 403 In [tt]psql[/tt] if you type: [tt]\d table_name[/tt] you get the same thing. Upvote 0 Downvote