我使用下面链接中的示例使用 CONCAT 将文件路径附加到列结果的开头。但是,当我使用它时,它会在所有“/”之前添加一个“\”。
链接:mysql concat string with result
我的查询:
"CONCAT('$this->unit_images_path', '/' , photo.photo_name) AS photo_name"
这会返回类似“images_path\/photo.jpg”的内容。
如何在此处使用 CONCAT 以便不添加“\”?
我使用下面链接中的示例使用 CONCAT 将文件路径附加到列结果的开头。但是,当我使用它时,它会在所有“/”之前添加一个“\”。
链接:mysql concat string with result
我的查询:
"CONCAT('$this->unit_images_path', '/' , photo.photo_name) AS photo_name"
这会返回类似“images_path\/photo.jpg”的内容。
如何在此处使用 CONCAT 以便不添加“\”?