如何在 Oracle SQL Developer 中键入并显示包含小时和分钟的日期?
我正在使用 Oracle SQL Developer。我想键入带有小时和分钟的日期,但 GUI 似乎不允许这样做。当我这样做时,最好在 Oracle SQL Developer GUI 中将所有日期字段显示为“YYYY-MM-DD HH24:MI:SS”。
I'm using Oracle SQL Developer. I'd like to key in dates with hours and minutes, but the GUI doesn't appear to allow that. While I'm at it, it would be nice to display all date fields as 'YYYY-MM-DD HH24:MI:SS' within the Oracle SQL Developer GUI as well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
经过一番探索后,我找到了正确的首选项设置(下面的屏幕截图)。
在“工具 -> 首选项”下,有一个可以配置的 Database:NLS 节点。我更改的设置是“日期格式”,我将其更改为“YYYY-MM-DD HH24:MI:SS”。
我必须重新启动 SQL Developer 才能使这些更改生效。之后,日期就会按照我想要的方式显示,GUI 上的输入掩码还允许我编辑时间。
After some more poking around I found the right preference setting (screen shot below).
Under "Tools -> Preference" there is a Database:NLS node you can configure. The setting I changed was "Date Format", which I changed to 'YYYY-MM-DD HH24:MI:SS'.
I had to restart SQL Developer in order for these changes to take effect. After that, dates display as I want, and the input mask on the GUI also allowed me to edit time.
或者执行以下操作:
alter session set nls_date_format = 'yyyy/mm/dd hh24:mi:ss';
也有效。
Or do this :
alter session set nls_date_format = 'yyyy/mm/dd hh24:mi:ss';
Works too.