函数
- 日期转字符
select date_format(now(), '%Y%m%d-%H%i%s');
select date_format(now(), '%Y%m%d-%H%i%s') from student;
select date_format(now(), '%Y%m%d') from student; - 获取毫秒需要在应用层想办法, 数据库存储的字段类型为char
- 字符转日期
select str_to_date('2018-04-17', '%y-%m-%d %H'); - 时间转时间戳
select unix_timestamp(now()); - 字符串转时间戳
select unix_timestamp('2018-04-17'); - 时间戳转字符串
select from_unixtime(1523894400); - 时间戳转字符串
select from_unixtime(1523894400, '%Y-%m');
设置分隔符为 '$$' , mysql默认的语句分隔符为 ';'
欢迎关注,以后会不定时更新!
网友评论