Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚将我的图像导入到 opencart 中。我现在注意到 OpenCart 不能正确处理 PNG 图形,因为它使用静态压缩率,这对 JPG 效果很好,但最终无损压缩 PNG,这不是很好。
我现在已经将 png 图像转换为 Jpeg,但我想知道是否可以使用 MySql 替换图像名称。
有什么方法可以替换 URL 的图像链接。
update TABLE_NAME set FIELD_NAME = replace(FIELD_NAME, ‘find this string’, ‘replace found string with this string’);