--架构:
select * from information_schema.SCHEMATA
--表:
select table_name from information_schema.tables
--列:
select table_name from information_schema.COLUMNS
--表约束:
select * from information_schema.TABLE_CONSTRAINTS
--键:
select * from information_schema.KEY_COLUMN_USAGE
--存储过程:
select * from information_schema.ROUTINES
--视图:
select * from information_schema.VIEWS

 

相关文章:

  • 2022-02-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-24
  • 2021-10-17
  • 2022-12-23
猜你喜欢
  • 2021-06-30
  • 2021-08-30
  • 2021-12-25
  • 2022-02-07
  • 2021-10-15
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案