Hi all!

Well, question is how could I to retrieve information about
types supported . In PostgreSQL the query would be:

------------------------------------------------------------------
SELECT pg_type.oid, typname, usename, obj_description(pg_type.oid)
FROM pg_type, pg_user 
WHERE typowner=usesysid AND typrelid = 0 AND typname !~ '^_' 
------------------------------------------------------------------

Is there some way to obtain equivalent columns from INFORMATION_SCHEMA,
as similar as possible ?

Thanks in advance...

Carlos Savoretti.
----------------




-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to