informix 查询库中所有表,不包括系统表和视图
如题
我想得到不包括系统表和视图的其他的表的表名
select tabname from systables where tabid>99
这个能查询除不包括系统的所有表,但是包括了视图
select tabname from systables where tabid>99 and tabtype='T'
但是这个还是包含了一些其他的表
我想查找通过DATA Studio查询出来的tables下的表
就是想查询用户自己建的表
select tabname from sysmaster:systabnames where dbsname='pmdb'
这样查询出的结果中,一部分是想要的,但是还有一些tabname是数字。去掉这些数字就是想要的表了,怎么去掉那些tabname事数字的呢?