这是我在数据库中的记录 Dynamic Keyword In C# 4.0 - Part 3
现在我想用查询来编辑这个名字 Dynamic Keyword In C# 4.0 - Part 3
如您所见,我想删除域名
后的ftp/
答案 0 :(得分:0)
你可以在FUNCTION中使用REPLACE(str,find_string,replace_with)构建
SELECT REPLACE(`link_field`, '/ftp/', '/') AS `link` FROM `table`;
查看
中的更多信息和示例https://dev.mysql.com/doc/refman/5.7/en/string-functions.html#function_replace
https://www.w3resource.com/mysql/string-functions/mysql-replace-function.php