How to view the table structure in DB2 database
I got the answer from the sysibm.syscolumns
sysibm.syscolumns
Select distinct(name), ColType, Length from Sysibm.syscolumns where tbname = 'employee';