Hello everybody I am learning DB2 and would like to know how to see a table\'s characteristics after I create one.
Similar to the EXPLAIN TABLE command in MySQL.
I just came across this query to describe a table in winsql
select NAME,TBNAME,COLTYPE,LENGTH,REMARKS,SCALE from sysibm.syscolumns where tbcreator = 'Schema_name' and tbname='Table_name' ;