只显示 MySQL 中用户创建的表?
是否有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
总结一下:
information_schema
包含有关数据库的元信息。您可以使用information_schema.tables
列出所有表。如果排除两个元模式information_schema
和mysql
,您将获得所有用户表This about wraps it up:
The
information_schema
contains meta-information about your database. You can list all tables usinginformation_schema.tables
. If you exclude the two meta-schemasinformation_schema
, andmysql
, you'll get all user-tables