是否有一个SQL命令,通过该命令我只能显示用户创建的表,并且不包括MySQL数据库中默认存在的表?
答案 0 :(得分:3)
这是关于它的内容:
select * from information_schema.tables
where table_schema not in ('information_schema', 'mysql', 'performance_schema')
information_schema
包含有关您数据库的元信息。您可以使用information_schema.tables
列出所有表格。如果排除两个元模式information_schema
和mysql
,您将获得所有用户表