首頁  >  文章  >  資料庫  >  如何檢查特定MySQL資料庫中表格的表狀態?

如何檢查特定MySQL資料庫中表格的表狀態?

WBOY
WBOY轉載
2023-09-09 20:01:30672瀏覽

如何檢查特定MySQL資料庫中表格的表狀態?

我們可以使用 show table status 語句來檢查資料庫中表格的狀態。例如,在名為tutorial的資料庫中,透過執行此語句我們可以取得表格的狀態如下 -

mysql> show table status \G
*************************** 1. row ***************************
           Name: student
         Engine: InnoDB
        Version: 10
     Row_format: Compact
           Rows: 0
 Avg_row_length: 0
    Data_length: 16384
Max_data_length: 0
   Index_length: 0
      Data_free: 7340032
 Auto_increment: NULL
    Create_time: 2017-10-24 09:34:29
    Update_time: NULL
     Check_time: NULL
      Collation: latin1_swedish_ci
       Checksum: NULL
 Create_options:
        Comment:
1 row in set (0.00 sec)

該資料庫只有一個名為「student」的表。

以上是如何檢查特定MySQL資料庫中表格的表狀態?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除