Bom dia a todos, por favor alguém saberia me dizer como esta query ficaria em Postgre:
É uma rotina o tipo e nome das colunas de uma table.
Select st.name as Type, sc.name as Name
from sysobjects so, syscolumns sc, systypes st
where so.id = sc.id
and sc.xtype = st.xtype
and so.type = ‘U’ – User Table
and so.name = ‘Usuario’ --<nome da tabela>
order by sc.colorder
Estou enviando a query caso alguem tenha interesse…
– script para obter os tipos e campos de table
Select pt.typname as Type, pa.attname as Name
from pg_class pc, pg_attribute pa, pg_type pt
where pc.oid = pa.attrelid
and pa.atttypid = pt.oid
and pa.attstattarget = -1
and pc.relname = 'usuario’
order by pa.attnum