在iSeries DB2中使用SQL将整数转换为日期
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在iSeries DB2中使用SQL将整数转换为日期相关的知识,希望对你有一定的参考价值。
intfield has this format: YYYYMMDD
SELECT DATE(substr(CHAR(intfield), 1, 4) || '-'|| substr(CHAR(intfield),5, 2) || '-'|| substr(CHAR(intfield), 7, 2)) AS datefield FROM file1
以上是关于在iSeries DB2中使用SQL将整数转换为日期的主要内容,如果未能解决你的问题,请参考以下文章
iSeries DB2 SQL - 使用 CASE 语句更新 UDF 中的变量
C# - 无法将类型“IBM.Data.DB2.iSeries.iDB2DataReader”隐式转换为“System.Data.SqlClient.SqlDataReader”