db2查询数据库所有表的sql语句该怎样写??

2024-11-23 09:19:28
推荐回答(3个)
回答1:

select name from sysibm.systables where type='T' and creator='DB2ADMIN'
type:数据库表用T表示;数据库视图用V表示
creator:数据库对象的创建者
select tabname from syscat.tables where tabschema = current schema ;// 获取当前模式下面的所有用户表

回答2:

seelct * from syscat.tables

回答3:

select * from user_tables