做一個(gè)學(xué)校項(xiàng)目的時(shí)候 要根據(jù)上中晚查詢 最后用的是
我們提供的服務(wù)有:成都做網(wǎng)站、網(wǎng)站設(shè)計(jì)、微信公眾號(hào)開(kāi)發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、聶拉木ssl等。為上千余家企事業(yè)單位解決了網(wǎng)站和推廣的問(wèn)題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的聶拉木網(wǎng)站制作公司
date_format(t1.record_time, '%H:%i:%s')??
SELECT t2.class_name,t1.class_no,t1.course_id,t1.course_name,t1.id,t1.pic_url,t1.record_time,t1.sign_day,t1.status,t1.student_name,t1.student_no FROM t_e_sign t1 LEFT JOIN t_e_sys_org t2 ON t2.org_code = t1.class_no WHERE IF (:studentName is not null, t1.student_name LIKE CONCAT('%',:studentName,'%') , 1 = 1) and IF (:className is not null, t2.class_name LIKE CONCAT('%',:className,'%') , 1 = 1) and IF (:startTime is not null, date_format(t1.record_time, '%Y-%m-%d') =:startTime , 1 = 1) and IF (:endTime is not null, date_format(t1.record_time, '%Y-%m-%d') =:endTime , 1 = 1) and IF (:startdetailTime is not null, date_format(t1.record_time, '%H:%i:%s') =:startdetailTime , 1 = 1) and IF (:enddetailTime is not null, date_format(t1.record_time, '%H:%i:%s') =:enddetailTime , 1 = 1) ORDER BY ?#{#pageable}",?
整個(gè)語(yǔ)句也寫(xiě)下吧
函數(shù):FROM_UNIXTIME
作用:將MYSQL中以INT(11)存儲(chǔ)的時(shí)間以"YYYY-MM-DD"格式來(lái)顯示。
語(yǔ)法:FROM_UNIXTIME(unix_timestamp,format)
返回表示 Unix 時(shí)間標(biāo)記的一個(gè)字符串,根據(jù)format字符串格式化。format可以包含與DATE_FORMAT()函數(shù)列出的條目同樣的修飾符。
根據(jù)format字符串格式化date值。
下列修飾符可以被用在format字符串中:
例子:
如何在MySQL中把一個(gè)字符串轉(zhuǎn)換成日期,分為以下兩種情況:
1.
無(wú)需轉(zhuǎn)化的
SELECT
*
FROM
表名 WHERE
date_sy'2016-12-01'
AND
date_sy'2016-12-05'
2.
使用DATE_FORMAT
SELECT
*
FROM
表名
WHERE
DATE_FORMAT(
date_sy,
'%Y-%m-%d')'2016-12-01'
AND
DATE_FORMAT(
date_sy,
'%Y-%m-%d')'2016-12-05'
方法一:實(shí)體類(lèi)中加日期格式化注解
[java] view plaincopy
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date receiveAppTime;
如上,在對(duì)應(yīng)的屬性上,加上指定日期格式的注解,本人親自測(cè)試過(guò),輕松解決問(wèn)題!
需要 import org.springframework.format.annotation.DateTimeFormat;
轉(zhuǎn)換函數(shù)位于spring-context.jar包中
方法二:控制器Action中加入一段數(shù)據(jù)綁定代碼
[java] view plaincopy
@InitBinder
public void initBinder(WebDataBinder binder) {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
dateFormat.setLenient(false);
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true)); //true:允許輸入空值,false:不能為空值