SQL 查询以获取特定架构名称下的所有标题名称
SQL query to get all the heading names under a specific schema name
SQL 查询特定模式名称下 'Table' 的标题。
Schema_name
- Table
- View
SELECT TABNAME FROM syscat.tables where tabschema = 'SCHEMA-NAME'
Above sql 打印出 'Table' 和 'View' 中所有 table 的名字,但我只想要 [=19] 下的 table 名字=]
尝试使用额外的过滤器
WHERE TYPE = 'T'
这会将您的结果限制为表格。
可以找到更多详细信息here
SQL 查询特定模式名称下 'Table' 的标题。
Schema_name
- Table
- View
SELECT TABNAME FROM syscat.tables where tabschema = 'SCHEMA-NAME'
Above sql 打印出 'Table' 和 'View' 中所有 table 的名字,但我只想要 [=19] 下的 table 名字=]
尝试使用额外的过滤器
WHERE TYPE = 'T'
这会将您的结果限制为表格。
可以找到更多详细信息here