依照关键字对MySQL的全部信息进行查询
时间: 2023-10-01 14:05:36 浏览: 69
单表查询_随堂实验.docx
如果您想根据关键字对 MySQL 数据库的全部信息进行查询,可以使用以下 SQL 语句:
```
SELECT * FROM information_schema.tables WHERE table_schema = 'your_database_name' AND (table_name LIKE '%your_keyword%' OR table_comment LIKE '%your_keyword%');
```
其中,`your_database_name` 是您想要查询的数据库名称,`your_keyword` 是您想要搜索的关键字。这条 SQL 语句将返回所有表名或表注释中包含该关键字的表的信息。
如果您只想返回特定的列,可以将 `*` 替换为所需的列名。例如:
```
SELECT table_name, table_comment FROM information_schema.tables WHERE table_schema = 'your_database_name' AND (table_name LIKE '%your_keyword%' OR table_comment LIKE '%your_keyword%');
```
这将返回所有表名或表注释中包含该关键字的表的表名和表注释列的信息。
阅读全文