使用 SUBSTRING 和 CONTAINS 的 SQL 查询

发布于 2024-12-07 03:25:41 字数 358 浏览 0 评论 0原文

我有下表

ID | Name | Url

每个 Url 包含文件 fe 的地址:“http://blah.blah.com/abcde.bin”。地址始终相同,但文件名相同。需要 SQL 查询来更新此列中的所有单元格,其中 Url 包含 http 并仅存储文件名。

例子:

SELECT URL FROM TABLE

1 | "http://blah.blah.com/abcde.bin"

UPDATE ...

SELECT URL FROM TABLE

1 | "abcde.bin"

I have following table

ID | Name | Url

Each Url contains address to file fe: "http://blah.blah.com/abcde.bin". Address is always same but file name. In need SQL query to update all cells in this column, where Url contains http and store only file name.

Example:

SELECT URL FROM TABLE

1 | "http://blah.blah.com/abcde.bin"

UPDATE ...

SELECT URL FROM TABLE

1 | "abcde.bin"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

享受孤独 2024-12-14 03:25:41

尝试这个查询:

UPDATE TABLE SET URL = REPLACE(URL ,'http://blah.blah.com/','')

它不使用 containsubstring,但用更少的代码执行相同的操作。如果它找到 'http://blah.blah.com/' 字符串,它将被替换为空字符串,因此您将只有您的名字。

我没有尝试过,但我认为这是正确的。

希望对您有帮助。

Try this query:

UPDATE TABLE SET URL = REPLACE(URL ,'http://blah.blah.com/','')

it doesn't use contain or substring, but does the same, with less code. If it finds the 'http://blah.blah.com/' string, it will be replaced with an empty string, so you will have just your name.

I didn't try it but I think it's correct.

Hope it helps you.

云裳 2024-12-14 03:25:41

如果您的地址除了文件名之外相同,那么您可以这样做:

UPDATE TABLE SET URL = REPLACE(URL ,'http://blah.blah.com/','')

If your adress is same except file name then you can do like :

UPDATE TABLE SET URL = REPLACE(URL ,'http://blah.blah.com/','')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文