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.
我有 2 个值日期字段:
如何仅从该值中获取日期、小时和分钟:5/22/2013 5:28 PM。我不需要秒。
谢谢
这取决于你想要什么。
如果您想要一个以该特定格式表示日期的字符串
to_char( your_date, 'MM/DD/YYYY HH:MI AM' )
如果您想要一个将秒数设置为 0 的日期,以便所有日期向下舍入到最后一分钟
trunc( your_date, 'MI' )
如果您想要其他东西(例如,提取单个组件),您需要提供更多详细信息来准确解释您想要返回的内容。