Oracle BI 报表中日期参数的格式
在 Oracle BI Publisher 中,我似乎找不到以什么格式将日期参数传递给查询。例如
select * from myTable where the_date = :the_date
有什么想法吗?
In Oracle BI Publisher, I can't seem to find in what format the date parameters are passed in to the query. For example
select * from myTable where the_date = :the_date
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这通常通过 NLS_DATE_FORMAT 参数来实现,可以在会话中设置,也可以针对整个数据库进行设置。 oracle 中的默认值是“DD-MON-YY”。当然,您可以使用 to_date 转换函数更改查询以采用您希望的任何格式。
This would typically be via the NLS_DATE_FORMAT parameter, either set in your session or for the whole database. The default in oracle is 'DD-MON-YY'. Of course you may change your query to take it in any format you wish with the to_date conversion function.