MySQL 字符串替换
嘿,使用 MySQL 从特定列中的所有行中删除开头和结尾斜杠的最有效方法是什么?
之前:
/hello/world/
foo/bar/
/something/else
/one/more/*
之后:
hello/world
foo/bar
something/else
one/more/*
...或者也许这应该在 PHP 中完成?
Hey, what's the most effective way to remove beginning and ending slashes from all rows in a particular column using MySQL?
Before:
/hello/world/
foo/bar/
/something/else
/one/more/*
After:
hello/world
foo/bar
something/else
one/more/*
...or maybe this should be done in PHP instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请参阅 TRIM()
See TRIM()
你绝对不能使用 MySQL 字符串函数 但我认为这最好在数据库之外使用 PHP 或您选择的任何编程语言来处理。
You could definitelyt make this work using the MySQL string functions but I think this would be best handled outside of the database using PHP or whatever programming language of your choice.
您的 PHP 选项:(我假设提取的行位于
$row
中)Your PHP option: (I'm assuming the fetched row is in
$row
)