1.查詢日期,返回日期字串
//查詢所有部落格對應的年份,返回乙個集合
list
<
string
>
findgroupyear()
;
2.根據日期查詢//根據年份查詢部落格資訊
list
<
blog
>
findbyyear(@
param
("year"
)string
year
);
"findgroupyear" resulttype=
"string"
>
select date_format
(b.update_time,
'%y'
) from t_blog b
<
/select>
"findbyyear" resulttype=
"blog"
>
select b.title, b.update_time, b.id, b.flag
from t_blog b
where date_format
(b.update_time,
'%y'
)= #
<
/select>
date_format(date,format):date表示日期,format表示顯示的格式。
該方法可以把date型別轉換為string型別的字串
MYSQL根據日期查詢
風蕭蕭兮易水寒,壯士一去兮不復還 總結一下mysql的根據日期查詢資料和在日期區間查詢資料.首先,看資料表和表結構 建表語句 create tabledatetest idint 11 not null auto increment,brand namevarchar 100 default nul...
MySQL根據日期查詢
1 查詢當天的資料 select from 表名 where to days 時間字段 to days now 2 查詢當周的資料 select from 表名 where yearweek date format 時間字段,y m d yearweek now 3 查詢當月的資料 select f...
Oracle之根據日期查詢
日期查詢是相對常見的查詢了,一般查詢都是查詢時間段內的資料 某天 某小時 幾號 幾號 等等 即使指定了時分秒如 2016 5 4 15 14 53 這麼乙個看上去是時間點的資料,仍然也是時間段,它是指 2016 5 4 15 14 53 000 到 2016 5 4 15 14 53 999 這1秒...