Hi,
I am trying to update column(col1) which is of type varchar with below SQL, I am getting com.ibm.db2.jcc .b.nm: DB2 SQL Error: SQLCODE=-408, SQLSTATE=42821.
Same sql is working well with Oracle and Postgres, so does that mean DB2 auto conversion from integer to varchar is not supported??
update tabA set col1=0 where ...
I am trying to update column(col1) which is of type varchar with below SQL, I am getting com.ibm.db2.jcc .b.nm: DB2 SQL Error: SQLCODE=-408, SQLSTATE=42821.
Same sql is working well with Oracle and Postgres, so does that mean DB2 auto conversion from integer to varchar is not supported??
update tabA set col1=0 where ...
Comment