This data can be found in the system catalog using the SYSCOLUMNS view.
Query on sample database:
SELECT coltype FROM SYS.SYSCOLUMNS WHERE tname = 'Contacts' // Table name AND creator = 'GROUPO' // Table owner AND cname = 'PHONE' // Column name
Result:
coltype ===== char