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