在 MySQL"show tables"中只显示具有特定模式的表?

mysqlmysqli database

您可以将 LIKE 运算符与 show tables 结合使用,以显示具有特定模式的表。LIKE 用于设置模式。

语法如下 -

SHOW TABLES LIKE ‘yourPattern’;

我们有数据库 test,其中有一些表带有字母 d。因此,我们正在考虑的模式是带有 d 的。

现在实现上述语法以在 SHOW TABLES 中显示具有特定模式的表。查询如下。

mysql> show tables like '%d_';

以下是输出。

+----------------------+
| Tables_in_test (%d_) |
+----------------------+
| differenceinseconds  |
| lasthourrecords      |
| skiplasttenrecords   |
+----------------------+
3 rows in set (0.04 sec)

相关文章