Re: type of a field - Mailing list pgsql-php

From knut.suebert@web.de
Subject Re: type of a field
Date
Msg-id 20020502195559.GB12934@web.de
Whole thread Raw
In response to type of a field  (ameen eetemadi <ameen78101@yahoo.com>)
List pgsql-php
ameen eetemadi schrieb:

> I want to know the type of a field in a table how can I khow it ?

  pg_fieldtype()

or something like

  SELECT a.attname, format_type(a.atttypid, a.atttypmod)
     FROM pg_class c, pg_attribute a
     WHERE c.relname = '$tablename'
     AND a.attnum > 0 AND a.attrelid = c.oid
     ORDER BY a.attnum;

?

Bye,
Knut Sübert

pgsql-php by date:

Previous
From: "Dave Page"
Date:
Subject: Re: [pgadmin-hackers] sql commands
Next
From: Surojit Niyogi
Date:
Subject: Re: boolean error