Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
就像sysdate插入当前日期一样,
有没有办法使用 sql 查询只插入当前时间。
例如 *insert into table_name values(sysdate); *
没有任何 Oracle 数据类型仅代表一小时/分钟/秒。有DATE各种TIMESTAMP表示时间点的类型,包括日期和时间。您没有说明为什么要尝试存储它,但您可以将时间作为偏移量存储在 NUMBER 列中,作为一天的分数。
DATE
TIMESTAMP
因此,如果您想查找商店周一营业的时间,您可以:
TRUNC( SYSDATE ) + offset