SQL语句中, 怎样把日期转为字符串?
发布网友
发布时间:2022-04-22 12:52
我来回答
共1个回答
热心网友
时间:2023-11-05 05:13
日期转字符串:
select to_char(sysdate,'yyyy-MM-dd HH24:mi:ss') from al;
字符串转日期
select to_date('2005-01-01 13:14:20','yyyy-MM-dd HH24:mi:ss') from al;
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);