Oracle日期与字符串的互相转换SQL语句
日期转字符串:
select to_char(sysdate,'yyyy-MM-dd HH24:mi:ss') from dual;
字符串转日期
select to_date('2005-01-01 13:14:20','yyyy-MM-dd HH24:mi:ss') from dual;
Mysql日期与字符串的互相转换SQL语句
时间转字符串
select date_format(now(),'%Y-%m-%d');
字符串转时间
select str_to_date('2016-01-02','%Y-%m-%d %H');
字符串转时间戳
select unix_timestamp('2016-01-02');
时间戳转字符串
select from_unixtime(1451997924,'%Y-%d');
时间转时间戳
select unix_timestamp(now());
时间戳转时间
select from_unixtime(1451997924);