MySQL查询数据库中没有主键的表
更新:HHH   时间:2023-1-7



  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数据库教程...