如图格式的数据,如何只保留后面的时分秒?请教各位
mysql select date_format(time,'%H:%i:%s')from table
oracle select to_char(time,'hh24:mi:ss') from table
你是要返回字符串?
select to_char(time,'hh24:mi:ss') as newTime from table