Use the REPLACE
method
Select REPLACE('abcdef_fhj_viji.dvc','abcde','')
If you want this query for your table :
Select REPLACE(column,'abcde','') from myTable
For update :
UPDATE TABLE
SET column = REPLACE(column,'abcde','')
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…