Is it possible using SQL in an SQLite table to replace part of a string?
SQL
SQLite
For example, I have a table where one of the fields holds the path
And if you just want to do it in a query without lasting consequences:
SELECT fieldA, replace(field, 'C:\afolder\', 'C:\anewfolder\'), fieldB FROM table;