黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

mysql怎么查詢數(shù)據(jù)庫有多少表

mysql怎么查詢數(shù)據(jù)庫有多少表

mysql中查詢一個數(shù)據(jù)庫中有多少表的方法:

mysql中直接使用下面的命令即可查詢:

select count(*) tables, table_schema from information_schema.tables
  where table_schema = '庫名' group by table_schema;

在information_schema下打開查詢,輸入語句:

 select count(*) tables, table_schema from information_schema.tables  where table_schema = 'test';

下一節(jié):mysql如何關聯(lián)表

數(shù)據(jù)庫技術

相關文章