0

我想以 MM/dd/yyyy 格式在 oracle DB 中保存日期,即当前日期。

我的 oracle db 有 column ,其数据类型为 date。

谁能让我知道我该怎么做。我试过了,

java.text.DateFormat df = new SimpleDateFormat("MM/dd/yyyy"); 
String s = df.format(new Date());  // It is giving in String format

但是我如何将它设置为我的 oracle DB 列?

4

1 回答 1

1

只需保存日期,无需任何格式。

update table set column=sysdate where id=1

在读回数据时,使用

select to_char(column, 'MM/DD/YYYY') my_date from table

于 2012-10-13T06:21:38.023 回答