Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jsf-2/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Db2 如何在少于100行的特定模式中查询表?_Db2 - Fatal编程技术网

Db2 如何在少于100行的特定模式中查询表?

Db2 如何在少于100行的特定模式中查询表?,db2,Db2,如何在少于100行的特定架构中查询表?首先对整个架构执行runstats。然后: select tabname from syscat.tables where card < 100 and tabschema = 'theschema' 从syscat.tables中选择tabname,其中card

如何在少于100行的特定架构中查询表?

首先对整个架构执行runstats。然后:

select tabname from syscat.tables where card < 100 and tabschema = 'theschema'
从syscat.tables中选择tabname,其中card<100,tabschema='theschema'

我想这就是要问的问题:如何在DB2数据库中获得行数不超过100的表列表?