removing characters from field in MS Access database table

后端 未结 4 1003
不知归路
不知归路 2021-01-18 21:27

Using MS Access 2010. I have a field in a table that contains windows path names surrounded by quotes, like this

\"C:\\My Documents\\Photos\\img1.jpg\"
\"C:\         


        
4条回答
  •  执念已碎
    2021-01-18 21:47

    Assuming your column name is MyColumn and table name is MyTable, you can use this sql to update your data to get rid of quotes.

    UPDATE MyTable
    SET MyColumn = REPLACE(MyColumn,'"','')
    

提交回复
热议问题