Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Mysql有current_time。oracle db的等价物是什么?
select current_time current_time -------------------- 15:30:16
您可以使用SYSDATE:
SYSDATE
SELECT TO_CHAR(SYSDATE, 'HH24:MI:SS') "current_time" FROM DUAL;