在mysql中,可以利用SELECT語句來配合count()函數查詢資料庫中表格的數量,語法為「SELECT count() FROM information_schema.TABLES WHERE TABLE_SCHEMA='資料庫名稱';」。
本教學操作環境:windows10系統、mysql8.0.22版本、Dell G3電腦。
查看資料庫表數量
語法如下:
SELECT count(TABLE_NAME) FROM information_schema.TABLES WHERE TABLE_SCHEMA='dbname';
其中dbname是要查看的資料庫的名字。
檢視表格結構:
description tbname;
也可使用簡寫:
desc tbname;
範例如下:
select count(*) tables ,table_schema from information_schema.tables where table_schema='work_ad' group by table_schema;##################################### #推薦學習:###mysql影片教學#######
以上是mysql怎樣查詢表格的個數的詳細內容。更多資訊請關注PHP中文網其他相關文章!