removing characters from field in MS Access database table

后端 未结 4 1000
不知归路
不知归路 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

    To make this a permanent change, you might run an update query that looked something like this:

    UPDATE [Your Table]
    SET [Your Table].[Your Field] = Replace([Your Table].[Your Field],"""","")
    

    This will get rid of all quotes, even if they aren't at the beginning or end. Post back if that's not exactly what you want.

提交回复
热议问题