Oracle TimeStamp to Char conversion


/ Published in: SQL
Save to your folder(s)

use this to convert the oracle time stamp into a character.


Copy this code and paste it in your HTML
  1. SELECT TO_CHAR(CURRENT_TIMESTAMP,'YYYYMMDDHH24MISSFF') FROM dual;
  2.  
  3.  
  4. RESULT:
  5. ------
  6. 20100701162937883230

URL: http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/functions180.htm

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.