I am running some queries to track down a problem with our backup logs and would like to display datetime fields in 24-hour military time. Is there a simple way to do this? I've tried googling and could find nothing.
|
|
Give the time in 24 hour format. More options are described here. |
||
|
|
|
|
It's not oracle that determines the display of the date, it's the tool you're using to run queries. What are you using to display results? Then we can point you to the correct settings hopefully. |
||
|
|
|
|
Use a to_char(field,'YYYYMMDD HH24MISS'). A good list of date formats is available at http://www.ss64.com/orasyntax/fmt.html |
||
|
|
|
|
If you want all queries in your session to show the full datetime, then do
at the start of your session. |
||
|
|
