mysql查詢表內(nèi)數(shù)據(jù) mysql中如何查看數(shù)據(jù)庫表的創(chuàng)建時間?
mysql中如何查看數(shù)據(jù)庫表的創(chuàng)建時間?方法:要查看數(shù)據(jù)庫表的創(chuàng)建時間,您可以單擊uViewschema中的信息uSchema database table description:schema ta
mysql中如何查看數(shù)據(jù)庫表的創(chuàng)建時間?
方法:要查看數(shù)據(jù)庫表的創(chuàng)建時間,您可以單擊uView
schema中的信息uSchema database table description:
schema table:提供當(dāng)前MySQL實例中所有數(shù)據(jù)庫的信息。此表是顯示數(shù)據(jù)庫的結(jié)果。
表:提供有關(guān)數(shù)據(jù)庫中表的信息,包括視圖。它詳細(xì)描述了表所屬的模式、表類型、表引擎、創(chuàng)建時間等信息。是從架構(gòu)名稱顯示表的結(jié)果。
數(shù)據(jù)庫表的創(chuàng)建時間在create of tables table time字段中
選擇create time FROM tables WHERE table Schema=“database name”and table name=“table name”
用要查詢的數(shù)據(jù)替換上面的數(shù)據(jù)庫名和表名。