获取表名

Posted xtwkh1973

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取表名相关的知识,希望对你有一定的参考价值。

1、Use Dictionary
static void findTables(Args _args)
Dictionary dictionary;
TableId tableId;
tableName tableName;
;
dictionary = new Dictionary();
tableId = dictionary.tableNext(0);
tableName = dictionary.tableName(tableId);
while (tableId)
info(strfmt("%1 - %2",int2str(tableId), tableName));
tableId = dictionary.tableNext(tableId);
tableName = dictionary.tableName(tableId);
2、Use SqlDictionary
SQLDictionary dictTable;
while select * from dictTable where dictTable.fieldId == 0
print dicttable.name, ‘ ‘, dicttable.tabId;
pause;

以上是关于获取表名的主要内容,如果未能解决你的问题,请参考以下文章

如何从 SQL 查询中获取表名?

workflow GetListIdByName 获取表名

在 MySQL 中使用 SELECT 语句获取表名

如何从数据库中获取所有表名?

MySQL如何使用SQL语句获取表结构和获取全部表名

MySQL如何使用SQL语句获取表结构和获取全部表名