Display Time in SQL

How to display current system time in SQL.

Questions by shanch

Showing Answers 1 - 9 of 9 Answers

g.sreemayee

  • May 19th, 2010
 

select to_char(sysdate,'HH24:MM:SS') from dual;
select current_timestamp from dual;

These two will give the current time of the system.
1. ll give the time only.
2. ll give the time with the date.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions