mybatis 时间类型转换

 select * from jp_transaction_records
    <where>
        del_flag= 0
        <if test="productName!=null and productName!=''">
            and product_name=#{productName}
        </if>
        <if test="transactionType!=null">
            and transaction_type=#{transactionType,jdbcType=TINYINT}
        </if>
        <if test="stime!=null and stime!=''">
            and create_date &gt;= DATE_FORMAT(#{stime},'%Y-%m-%d %H:%i:%s')
        </if>
        <if test="edtime!=null and edtime!=''">
            and create_date &lt;= DATE_FORMAT(#{edtime},'%Y-%m-%d %H:%i:%s')
        </if>
        <if test="customerId!=null and customerId!=''">
            and customer_id=#{customerId}
        </if>
        order by create_date desc
    </where>
</select>

在mysql中,DATE_FORMAT(date, format) 函数根据format字符串格式化date值。

%M 月名字(January……December) 
%W 星期名字(Sunday……Saturday) 
%D 有英语前缀的月份的日期(1st, 2nd, 3rd, 等等。) 
%Y 年, 数字, 4 位 
%y 年, 数字, 2 位 
%a 缩写的星期名字(Sun……Sat) 
%d 月份中的天数, 数字(00……31) 
%e 月份中的天数, 数字(0……31) 
%m 月, 数字(01……12) 
%c 月, 数字(1……12) 
%b 缩写的月份名字(Jan……Dec) 
%j 一年中的天数(001……366) 
%H 小时(00……23) 
%k 小时(0……23) 
%h 小时(01……12) 
%I 小时(01……12) 
%l 小时(1……12) 
%i 分钟, 数字(00……59) 
%r 时间,12 小时(hh:mm:ss [AP]M) 
%T 时间,24 小时(hh:mm:ss) 
%S 秒(00……59) 
%s 秒(00……59) 
%p AM或PM 
%w 一个星期中的天数(0=Sunday ……6=Saturday ) 
%U 星期(0……52), 这里星期天是星期的第一天 
%u 星期(0……52), 这里星期一是星期的第一天 
%% 一个文字“%”。 
         

把字符串转为日期格式

SELECT DATE_FORMAT('2019-03-20 16:16:30',   '%Y-%m-%d %H:%i:%S'); 
               

把日期转为字符串格式

SELECT DATE_FORMAT(NOW(),   '%Y-%m-%d %H:%i:%S'); 
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值