我有TIMESTAMP,我想将其转换为Date格式。我尝试过使用to_char方法,但它给出了一个格式不兼容的错误。 Plz帮我这个。
这是我要转换的TIMESTAMP,
timestampCreated = 29-SEP-10 00.00.00.000000000
我希望它来自
"dd-MM-yyyy"
这种格式。我试过这个,
to_char(ap.timestampCreated,'dd-MM-yyyy')
但它没有用。 Plz帮助我。谢谢。
答案 0 :(得分:0)
timestampCreated = 29-SEP-10 00.00.00.000000000
新的SimpleDateFormat(" dd-MM-yyyy")。format(timestampCreated)