Info

You are currently browsing the archives for the SQL category.

Calendar
February 2012
S M T W T F S
« Apr    
 1234
567891011
12131415161718
19202122232425
26272829  
Categories

Archive for the SQL Category

Oracle Sysdate formatting

You can use the PL-SQL to_char function to format the output of SYSDATE like this:

select to_char(sysdate,’DD/MM/YYYY HH24:MI:SS’) from dual;

|