如何查询DB2的表和表结构select * from sysibm.systables where typeT and creatorYOUR_USERselect
如何查询DB2的表和表结构
select * from sysibm.systables where type='T' and creator='YOUR_USER'
select * from sysibm.columns where table_schema = 'YOUR_USER'
and table_name = 'YOUR_TABLE_NAME'
