Using update_batch to increment fields in database Single quotes automatically added calling function code
$this->db->update_batch("FundCategory",$create_data,'fundCategoryId')
My codigniter last query is
UPDATE `FundCategory` SET `fundCategoryUpdatedById` = CASE
WHEN `fundCategoryId` = '4' THEN '20000045'
WHEN `fundCategoryId` = '4' THEN '20000045'
ELSE `fundCategoryUpdatedById` END, `fundCategoryValue` = CASE
WHEN `fundCategoryId` = '4' THEN 'fundCategoryValue + 100'
WHEN `fundCategoryId` = '4' THEN 'fundCategoryValue + 200'
ELSE `fundCategoryValue` END
WHERE `fundCategoryId` IN('4','4')
I want to remove single quotes after then when increment "fundCategoryValue" column