Home >Database >Mysql Tutorial >MYSQL分享:获取缺失主键表信息语句_MySQL

MYSQL分享:获取缺失主键表信息语句_MySQL

WBOY
WBOYOriginal
2016-06-01 13:34:011037browse

bitsCN.com


MYSQL分享:获取缺失主键表信息语句

 

[sql] 

SELECT a.`TABLE_SCHEMA` AS DB_NAME , a.`TABLE_NAME` , a.`TABLE_ROWS` ,a.`ENGINE`  -- , a.*   

FROM   

information_schema.`TABLES` a  

LEFT JOIN  information_schema.`TABLE_CONSTRAINTS` b  

    ON a.`TABLE_NAME` = b.`TABLE_NAME` AND a.`TABLE_SCHEMA` = b.`TABLE_SCHEMA`   

WHERE b.`TABLE_SCHEMA` IS NULL   

AND a.`TABLE_TYPE` = 'BASE TABLE'  

AND a.`TABLE_SCHEMA` NOT IN ('information_schema','test','mysql','performance_schema')  

ORDER BY DB_NAME ,a.`TABLE_ROWS` DESC ;  

 

bitsCN.com
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn