程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL中的特殊語句查詢

MySQL中的特殊語句查詢

編輯:MySQL綜合教程

1.計算數據表中一共有多少記錄sql語句  mysql> select count(*) from openes;  +----------+  | count(*) |  +----------+  |      136 |  +----------+  1 row in set (0.00 sec)    2.查詢字段類型為datetime的SQL語句:      mysql> select * from biders where author_id =2253 and created_at between   '2012-3-19   00:00:00 '   and   '2012-3-19   23:59:59  ';  +----+-----------+---------------------+---------------------+---------------------+  | id | author_id | created_at          | updated_at          | num_of_target_files |  +----+-----------+---------------------+---------------------+---------------------+  |  10 |      2353 | 2012-3-19 15:21:08 | 2012-3-19 15:21:08 |                NULL |  +----+-----------+---------------------+---------------------+---------------------+  1 row in set (0.00 sec)        作者 hllnihao

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved