說說一些有用的MySQL語句

來源:互聯網
上載者: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 FROM tbl GROUP BY id HAVING COUNT(*) = N; 

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

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

5. 尋找表中的主鍵

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

6. 查看你的數庫有多大

 
  1. SELECT 
  2.   
  3. table_schema AS 'Db Name', 
  4.   
  5. Round( Sum( data_length + index_length ) / 1024 / 1024, 3 ) AS 'Db Size (MB)', 
  6.   
  7. Round( Sum( data_free ) / 1024 / 1024, 3 ) AS 'Free Space (MB)' 
  8.   
  9. FROM information_schema.tables 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.