介紹六個有用的MySQL的SQL語句

來源:互聯網
上載者:User

本文給大家介紹六條比較有用的MySQL的SQL語句,可能很多人都通過PHP來實現這些功能。

1. 計算年數

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

 
  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’,那麼它們之間所差的秒數為:

 
  1. UNIX_TIMESTAMP( dt2 ) - UNIX_TIMESTAMP( dt1 ) 

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

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

 
  1. SELECT id 
  2. FROM tbl 
  3. GROUP BY id 
  4. HAVING COUNT(*) = N; 

4. 計算兩個日子間的工作日

所謂工作日就是除出周六周日和節假日。

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

5. 尋找表中的主鍵

 
  1. SELECT k.column_name 
  2. FROM information_schema.table_constraints t 
  3. JOIN information_schema.key_column_usage k 
  4. USING (constraint_name,table_schema,table_name) 
  5. WHERE t.constraint_type='PRIMARY KEY' 
  6. AND t.table_schema='db' 
  7. AND t.table_name=tbl' 

6. 查看你的數庫有多大

 
  1. ELECT 
  2. table_schema AS 'Db Name', 
  3. Round( Sum( data_length + index_length ) / 1024 / 1024, 3 ) AS 'Db Size (MB)', 
  4. Round( Sum( data_free ) / 1024 / 1024, 3 ) AS 'Free Space (MB)' 
  5. FROM information_schema.tables 
  6. GROUP BY table_schema ; 

相關文章

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.