AS400 DB2 SQL 语法中 Oracle 的 to_char 的等效项是什么?
我正在尝试显示从 DB2 实例获取的 DATE 字段。
在 Oracle 中,我会使用以下内容:
to_char(v_date, 'YYYY-MM-DD')
AS400 DB2 中的等效项是什么?
I'm trying to display a DATE field fetched from a DB2 instance.
In Oracle I'd use something like:
to_char(v_date, 'YYYY-MM-DD')
What's the equivalent in AS400 DB2?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在V5R3或更高版本中,使用CHAR()函数。 要获得与 Oracle 示例相同的结果,请使用以下格式:将
CHAR() 函数与日期字段一起使用时,您可以从以下格式中进行选择:ISO、USA、EUR、JIS 和本地。 当使用“local”作为格式时,它将使用ODBC连接作业的属性,这可能是日期格式和日期分隔符的系统级值。 其他日期格式如下:
在V5R4中,可以使用varchar_format函数。 此函数的唯一有效格式是“YYYY-MM-DD HH24:MI:SS”和“YYYY-MM-DD”。
在 V6R1 中,您可以为 varchar_format 函数提供更好的格式化选项。 正如另一个答案中提到的,to_char 是 varchar_format 的替代品。
In V5R3 or later, use the CHAR() function. To get the same results as your Oracle example, use this:
When using the CHAR() function with date fields, you can choose from the following formats: ISO, USA, EUR, JIS, and local. When using "local" as the format, it will use the attributes of the ODBC connection job, which will probably be the system-level values of date format and date separator. The other date formats are as such:
In V5R4, you can use the varchar_format function. The only valid formats for this function are 'YYYY-MM-DD HH24:MI:SS' and 'YYYY-MM-DD'.
In V6R1 you have better formatting options for the varchar_format function. As mentioned in another answer, to_char is an alternative to varchar_format.
事实证明,与“
to_char
”等效的 DB2 是...“to_char
”。http://publib.boulder.ibm.com/infocenter/db2luw/v9/topic/com.ibm.db2.udb.admin.doc/doc/r0007108.htm
底层函数是
varchar_format< /code>,其中
to_char
是同义词。It turns out that the DB2 equivalent to "
to_char
" is... "to_char
".http://publib.boulder.ibm.com/infocenter/db2luw/v9/topic/com.ibm.db2.udb.admin.doc/doc/r0007108.htm
The underlying function is
varchar_format
, for whichto_char
is a synonym.这应该有帮助:
http://www.ibm.com/ developerworks/db2/library/techarticle/0211yip/0211yip3.html
This should help:
http://www.ibm.com/developerworks/db2/library/techarticle/0211yip/0211yip3.html