仅显示MySQL中用户创建的表?
作者:互联网
是否有一条SQL命令,通过该命令我只能显示用户创建的表,而不能显示MySQL数据库中默认存在的表?
解决方法:
这是对它的总结:
select * from information_schema.tables
where table_schema not in ('information_schema', 'mysql', 'performance_schema')
information_schema包含有关您的数据库的元信息.您可以使用information_schema.tables列出所有表.如果排除两个元方案information_schema和mysql,则将获得所有用户表
标签:information-schema,metadata,mysql 来源: https://codeday.me/bug/20191208/2091261.html