mysql 有用sql總結(不斷更新中…)

來源:互聯網
上載者:User

 

2011-11-21

1. 計算年數

你想通過生日來計算這個人有幾歲了。

 

SELECT DATE_FORMAT(FROM_DAYS(TO_DAYS(now()) - TO_DAYS(@dateofbirth)), '%Y') + 0;

 

2. 兩個時間的差 取得兩個 datetime 值的差。

假設 dt1 和 dt2 是 datetime 類型,其格式為 ‘yyyy-mm-dd hh:mm:ss’,那麼它們之間所差的秒數為:

 

UNIX_TIMESTAMP( dt2 ) - UNIX_TIMESTAMP( dt1 )

  

除以60就是所差的分鐘數,除以3600就是所差的小時數,再除以24就是所差的天數。

3. 顯示某一列出現過N次的值

 

SELECT id FROM tbl GROUP BY id HAVING COUNT(*) = N;

  

 

4. 計算兩個日子間的工作日 所謂工作日就是除出周六周日和節假日。

 

SELECT COUNT(*) FROM calendar WHERE d BETWEEN Start AND Stop AND DAYOFWEEK(d) NOT IN(1,7) AND holiday=0;

  

5. 尋找表中的主鍵

 

SELECT k.column_name FROM information_schema.table_constraints t

 JOIN information_schema.key_column_usage k USING (constraint_name,table_schema,table_name)

WHERE t.constraint_type='PRIMARY KEY' AND t.table_schema='db' AND t.table_name=tbl' 

 

  

6. 查看你的數庫有多大

 

SELECT

 table_schema AS 'Db Name',

    Round( Sum( data_length + index_length ) / 1024 / 1024, 3 ) AS 'Db Size (MB)',

  Round( Sum( data_free ) / 1024 / 1024, 3 ) AS 'Free Space (MB)'

FROM information_schema.tables GROUP BY table_schema ;

 

 

  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.