AS400 DB2 SQL 语法中 Oracle 的 to_char 的等效项是什么?

发布于 2024-07-27 03:13:46 字数 167 浏览 6 评论 0原文

我正在尝试显示从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

晚风撩人 2024-08-03 03:13:46

在V5R3或更高版本中,使用CHAR()函数。 要获得与 Oracle 示例相同的结果,请使用以下格式:将

char(v_date, ISO)

CHAR() 函数与日期字段一起使用时,您可以从以下格式中进行选择:ISO、USA、EUR、JIS 和本地。 当使用“local”作为格式时,它将使用ODBC连接作业的属性,这可能是日期格式和日期分隔符的系统级值。 其他日期格式如下:

ISO = 'yyyy-mm-dd'
USA = 'mm/dd/yyyy'
EUR = 'dd.mm.yyyy'
JIS = 'yyyy-mm-dd'

在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:

char(v_date, ISO)

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:

ISO = 'yyyy-mm-dd'
USA = 'mm/dd/yyyy'
EUR = 'dd.mm.yyyy'
JIS = 'yyyy-mm-dd'

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.

御弟哥哥 2024-08-03 03:13:46

事实证明,与“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 which to_char is a synonym.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文