只显示 MySQL 中用户创建的表?

发布于 2024-11-06 14:54:56 字数 53 浏览 0 评论 0原文

是否有一个 SQL 命令可以让我只显示用户创建的表并排除 MySQL 数据库中默认存在的表?

Is there a SQL command by which I can display only the tables created by users and excluding those present by default in the MySQL database?

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

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

发布评论

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

评论(1

陌路黄昏 2024-11-13 14:54:56

总结一下:

select * from information_schema.tables 
where table_schema not in ('information_schema', 'mysql', 'performance_schema')

information_schema 包含有关数据库的元信息。您可以使用 information_schema.tables 列出所有表。如果排除两个元模式 information_schemamysql,您将获得所有用户表

This about wraps it up:

select * from information_schema.tables 
where table_schema not in ('information_schema', 'mysql', 'performance_schema')

The information_schema contains meta-information about your database. You can list all tables using information_schema.tables. If you exclude the two meta-schemas information_schema, and mysql, you'll get all user-tables

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