23

在 Oracle 10g 中,我在表中使用DATE类型时遇到了问题。我只想要我的DATE现场商店DATE,没有时间自动。

有这么多的解决方案,我知道它喜欢使用TO_CHARand TO_DATEorTRUNC但我面临着我正在使用如此多的程序来插入或更新数据并且没有时间更新所有这些。

我该如何解决这个问题?

4

2 回答 2

31

最好的解决方案是:

  1. 从您的 DATE 列中删除所有时间 ( update yourtable set yourdatecolumn = trunc(yourdatecolumn))

  2. 通过使用在列上放置检查约束,确保所有未来日期不包含时间部分check (yourdatecolumn = trunc(yourdatecolumn))

  3. 调整所有 INSERT 和 UPDATE 语句,或者 - 如果你幸运的话 - 调整你的 API,只插入 TRUNCed 日期。

最简单的解决方案是:

  1. (可选)从 DATE 列中删除所有时间。

  2. 创建一个前行插入或更新数据库触发器,该触发器设置:new.yourdatecolumn := trunc(:new.yourdatecolumn);

于 2012-05-03T10:39:43.567 回答
-5

我这样用

插入:Insert into table (name_date) values(to_date(current_date,'dd/mm/yyyy')); 更新:update table set name_date=to_date(current_date,'dd/mm/yyyy') where id=1;

就这样...

于 2013-10-03T09:40:14.077 回答