I'm using Mybatis query database
mysql table structure
parent_id default is ''
insert value is
Mybatis get value seem error? , parent_id should be "" instead null value?
if your value in DB is empty string and in your Java object is int/Integer, MyBatis cannot cast the column. To solve this, you can either:
IF(parent_id = '', null, parent_id) as parent_id