将mysql数据库表中的目录路径替换为url路径

发布于 2024-11-04 00:59:39 字数 425 浏览 0 评论 0原文

亲爱的大家..在我经过多次尝试和错误尝试后放弃之前,有人可以帮助我解决以下问题吗?

我正在尝试将路径名 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏夜暖风 2024-11-11 00:59:39

你需要逃避斜杠。查看以下示例:

-- with escaping, yay it works
SELECT REPLACE(filename, 'D:\\Downloads\\Music', 'http://mysite.com/Music/') FROM songlist;

You need to escape the slashes. Check out the following as an example:

-- with escaping, yay it works
SELECT REPLACE(filename, 'D:\\Downloads\\Music', 'http://mysite.com/Music/') FROM songlist;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文