I have used the following query for sqlite3 update.
UPDATE customer SET nameid = '0' where (a like '%aba%' or b like '%aba%' or c like '%aba%' or d like '%aba%') COLLATE NOCASE.
But In my tables, the respected column stores the value like ABA,Aba,ABa,aBA. I want to make update query with case insensitive. Kindly guide me , what mistake i have done.
The above query is not updating the tables.
THanks