久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      mysql如何查詢數(shù)據(jù)庫的大小

      mysql查詢數(shù)據(jù)庫的大小的方法:1、查詢整個庫的大小,代碼為【select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB')】;2、查詢某個庫的大小,代碼為【from informati】。

      mysql如何查詢數(shù)據(jù)庫的大小

      相關(guān)學習推薦:mysql數(shù)據(jù)庫

      mysql查詢數(shù)據(jù)庫的大小的方法:

      1、查詢整個mysql數(shù)據(jù)庫,整個庫的大??;單位轉(zhuǎn)換為MB。

      select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data  from information_schema.TABLES

      mysql如何查詢數(shù)據(jù)庫的大小

      2、查詢mysql數(shù)據(jù)庫,某個庫的大??;

      select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data    from information_schema.TABLES  where table_schema = 'testdb'

      mysql如何查詢數(shù)據(jù)庫的大小

      3、查看庫中某個表的大?。?/p>

      select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data    from information_schema.TABLES  where table_schema = 'testdb'    and table_name = 'test_a';

      mysql如何查詢數(shù)據(jù)庫的大小

      4、查看mysql庫中,test開頭的表,所有存儲大??;

      select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data    from information_schema.TABLES  where table_schema = 'testdb'    and table_name like 'test%';

      mysql如何查詢數(shù)據(jù)庫的大小

      贊(0)
      分享到: 更多 (0)
      ?
      網(wǎng)站地圖   滬ICP備18035694號-2    滬公網(wǎng)安備31011702889846號