博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
查找没有主键的用户表
阅读量:6619 次
发布时间:2019-06-25

本文共 905 字,大约阅读时间需要 3 分钟。

hot3.png

##1. 没有主键,innodb自动创建的主键,innodb_sys_indexes表name列记录为GEN_CLUST_INDEX

SELECT     t.name AS table_name,    t.space,    t.file_format,    t.row_format,    t.space_typeFROM    information_schema.INNODB_SYS_TABLES AS t,    information_schema.INNODB_SYS_INDEXES AS iWHERE    t.table_id = i.table_id        AND t.space = i.space        AND t.name NOT LIKE 'SYS%'        AND t.name NOT LIKE 'mysql%'        AND i.name = 'GEN_CLUST_INDEX';
  • 5.6,INNODB_SYS_TABLES没有space_type

2. 通过tables和columns表进行检索

SELECT     table_schema, table_nameFROM    information_schema.TABLESWHERE    (table_schema , table_name) NOT IN (SELECT DISTINCT            table_schema, TABLE_NAME        FROM            information_schema.COLUMNS        WHERE            COLUMN_KEY = 'PRI')        AND table_schema NOT IN ('mysql' , 'information_schema',        'sys',        'performance_schema');

转载于:https://my.oschina.net/anthonyyau/blog/601962

你可能感兴趣的文章
[转载]html中DTD使用小结
查看>>
经典排序算法 - 冒泡排序Bubble sort
查看>>
mysql的查询、子查询及连接查询
查看>>
mysql 命令导入导出数据
查看>>
Ubuntu系统(二)-启用root账号
查看>>
mysql开启远程访问的方法
查看>>
nginx accept() failed (24: Too many open files)
查看>>
安装Ntop监控网络软件
查看>>
Exchange Server 2013 DAG高可用部署(二)-网络及先决条件准备
查看>>
我的友情链接
查看>>
以SYSTEM用户运行CMD
查看>>
企业Windows域环境中的组策略应用案例二
查看>>
shell编程基础总结
查看>>
图解Git
查看>>
禁止指定IP连接SQLSERVER
查看>>
性能测试技能树
查看>>
曙光云计算合作伙伴招募 VMware、永中软件等已加入
查看>>
Cocos网络篇[3.2](3) ——Socket连接(1)
查看>>
cocos2dx[3.4](25)——瓦片地图TiledMap
查看>>
linux运维笔记-linux文件系统
查看>>