mysql 可以自动触发 SHOW TABLES 吗?

发布于 2024-11-20 00:42:02 字数 268 浏览 3 评论 0原文

我有一个包含很多表(> 50000)的数据库,因此“SHOW TABLES”语句需要相对较长的时间。

我正在运行的代码不包含该语句,但每次运行脚本时我仍然看到它显示为“show processlist”。

有没有办法让mysql自动执行该语句?

供参考: 该代码是从命令行运行的 PHP。它使用adodb库来执行mysql语句。我已经删除了 adodb 代码中的 SHOW TABLES 的任何实例,并将其替换为“blabla”,但它仍然显示。

谢谢!

I have a database with a lot of tables (> 50000), as a consequence the "SHOW TABLES" statement takes relatively long.

The code I am running does not contain the statement, but I still see it showing up with "show processlist" each time I run my script.

Is there any way mysql could execute the statement automatically ?

FYI:
The code is PHP running from the command line. It uses the adodb library to execute mysql statements. I have removed any instance of SHOW TABLES in the adodb code and replaced it with "blabla", but it still shows up.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

橘虞初梦 2024-11-27 00:42:02

如果您使用 GUI 界面,它可能会自动执行 show table...使用命令行界面。

if you're using a GUI interface it may automatically execute show tables... use command line interface.

走过海棠暮 2024-11-27 00:42:02

如果您不以 -A 开头,即使 CLI 也可能调用 SHOW TABLES。

Even the CLI may call SHOW TABLES if you don't start it with -A.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文