mysql查看表名及註解的方法:執行【select table_name from information_schema.tables where table_schema='資料庫名稱';】語句即可查看。
查詢所有表名
(推薦教學:mysql影片教學)
select table_name from information_schema.tables where table_schema='数据库名称';
查詢資料庫表名的註解:
select table_name 表名,TABLE_COMMENT 表注释 from INFORMATION_SCHEMA.TABLES Where table_schema = '数据库名称' AND table_name ="表名"
相關推薦:mysql教學
以上是mysql如何查看表名及註釋的詳細內容。更多資訊請關注PHP中文網其他相關文章!