将TIMESTAMP转换为hql

时间:2017-03-30 05:50:11

标签: java sql hql

我有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帮助我。谢谢。

1 个答案:

答案 0 :(得分:0)

timestampCreated = 29-SEP-10 00.00.00.000000000

新的SimpleDateFormat(" dd-MM-yyyy")。format(timestampCreated)