RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

云南昆明网站维护公司

昆明网站建设、网站设计制作、网站运营维护常见知识介绍
MySQL查询数据库中没有主键的表
  1. select table_schema,table_name from information_schema.tables
  2. where (table_schema,table_name) not in(
  3.     select distinct table_schema,table_name from information_schema.columns where COLUMN_KEY='PRI'    
  4. )
  5. and table_schema not in (
  6.     'sys','MySQL','information_schema','performance_schema'
  7. );


文章名称:MySQL查询数据库中没有主键的表
分享URL:http://www.bdklh.com/article/pdhgpg.html