将mysql数据库表中的目录路径替换为url路径
亲爱的大家..在我经过多次尝试和错误尝试后放弃之前,有人可以帮助我解决以下问题吗?
我正在尝试将路径名 D:\Downloads\Music\ (注意斜线)替换为 http://mysite.com /Music/ 中的 mysql 字段名称称为“songlist”表下的“filename”。
下面是我尝试过的查询代码,但没有任何反应。它只给我以下消息:0 行受影响。 (查询花费了 0.1428 秒)
UPDATE Songlist SET filename = Replace(filename, "D:\Downloads\Music", "http://mysite.com/Music/")
非常感谢您的帮助! !!
Dear all..before i give up after multiple trial and error attempts,can someone please help me with below query.
I am trying to replace the path name D:\Downloads\Music\ (note the slash) to http://mysite.com/Music/ in mysql field name called "filename" under "songlist" table.
Below is the query code that I tried ,but nothing happens.It only gives me the following message : 0 row(s) affected. ( Query took 0.1428 sec )
UPDATE songlist SET filename = replace(filename, "D:\Downloads\Music", "http://mysite.com/Music/")
many thanks for the help!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你需要逃避斜杠。查看以下示例:
You need to escape the slashes. Check out the following as an example: