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

2024年11月23日 09:19
有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