[Solved] How to Update this data using SQL? [duplicate]
Something like this will work: UPDATE yourtable SET yourfield = MID(yourfield,INSTR(yourfield,”/Documents/”)); INSTR locates the position of the string /Documents/, and MID gets everything beginning from there. Notes: This maybe won’t work as you expect it when you have something like /Documents/Documents/ in your path string. Depending on your RDBMS MID and INSTR may not be … Read more