获取列的 table 名称/实体
Get the table name / entity of a column
我想检查我的 MySQL 数据库中是否有一个 table,它有一个名为 country
的列。如果是这样,我想知道它的 table 名称/实体。
这可能吗?
show tables from database like 'country';
使用 like 进行精确匹配,如果您的查询 returns 结果表示有 table 否则没有。
我想检查我的 MySQL 数据库中是否有一个 table,它有一个名为 country
的列。如果是这样,我想知道它的 table 名称/实体。
这可能吗?
show tables from database like 'country';
使用 like 进行精确匹配,如果您的查询 returns 结果表示有 table 否则没有。