I have sqlite database in which I have table “scripts” in that table I have columns, on of a column which name is “fname” have values like this
111/222/333
111/222
111/222/444/555
111/888/777
now I want to update all values whcih contains 222, so I want to run command and update values like following 222 to 000
111/000/333
111/000
111/000/444/555
111/888/777
How I can do that ?
you can replace the string occurrence …