在 Oracle 中格式化日期和时间
我正在使用 Oracle,并且正在使用 SQL Developer-1.5.4.59.40,但我遇到了问题。我不知道如何使用日期格式。我想使用一种格式:“dd/mm/aaaa hh24:mm”,但 Oracle 不接受它。错误是:
ORA-01830: La máscara de formato de fecha termina antes de conversionr toda la cadena de entrada
I'm working with Oracle and I'm using SQL Developer-1.5.4.59.40 but I have a problem. I don't know how use the format for date. I want to use a format: "dd/mm/aaaa hh24:mm" but Oracle doesn't accept it. Tthe error is:
ORA-01830: La máscara de formato de fecha termina antes de convertir toda la cadena de entrada
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
要在 SQL Deverloper 中更改所有查询的日期格式(并让它每天记住)
:
现在只需在查询中执行此操作
to change the date format for all queries (and have it remembered day to day)
in SQL Deverloper:
now to simply do that in a query
尝试:
其中
some_date
是例如“31/08/2012”。Try:
Where
some_date
is for example '31/08/2012'.如果
some_date
是日期类型的列名,那么您可以使用to_char
函数转换为任何格式。If
some_date
is the column name of date type then you can use theto_char
function to convert to any format.尝试“DD/MM/YYYY HH24:MI”
一些盲文以使答案足够长
try "DD/MM/YYYY HH24:MI"
some blind text to make the answer long enough