oracle insert only time(oracle仅插入时间)
问题描述
我想将数据作为时间而不是日期插入数据库.如果我使用 to_date('2012-08-31 07:39:33', 'YYYY-MM-DD HH24:MI:SS')
它也会添加日期.如果我使用 to_date('09:34:00', 'HH24:MI:SS')
它也会添加年、月、日,从无到有:|后来我需要获取时间在 x 和 y 之间的行,而不考虑年、月或日.我怎么做?谢谢
I would like to insert data to db as time, not date. If I use to_date('2012-08-31 07:39:33', 'YYYY-MM-DD HH24:MI:SS')
it adds date too.
If I use to_date('09:34:00', 'HH24:MI:SS')
it adds year, month, day as well, from nowhere :|
Later I need to get rows where time is between x and y, not taking in account the year, month or day. How do I do that?
thanks
推荐答案
DATE
类型总是包含日期组件.
A DATE
type always includes the date component.
一种选择是继续使用 DATE
并编写代码以忽略日期组件.为了使查询更高效,您可能希望在诸如 TO_CHAR( date_field, 'HH24:MI:SS' )
之类的内容上创建基于函数的索引,并在查询中使用该表达式.
One option is to continue using DATE
and write your code to ignore the date component. In order to make queries on the time efficient, you might want to create a function-based index on something like TO_CHAR( date_field, 'HH24:MI:SS' )
and use that expression in your queries.
或者,您可以使用 NUMBER
字段来存储自午夜以来的秒数,并据此编写查询.
Alternatively, you could use a NUMBER
field to store the number of seconds since midnight, and write your queries in terms of that.
这篇关于oracle仅插入时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:oracle仅插入时间


基础教程推荐
- 带有WHERE子句的LAG()函数 2022-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- 带更新的 sqlite CTE 2022-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01