如果MYSQL中的图像字段为空或没有上传图像,我该如何更新?
我尝试了这个,但没有更新任何内容。
UPDATE `db`.`ts126` SET `Image` = LOAD_FILE('C:\Users\user\Desktop\aa\bb\cc\placeholder.png') WHERE Image=""
我也试过
UPDATE `db`.`ts126`
SET `Image` = 'C:\Users\user\Desktop\aa\bb\cc\placeholder.png'
WHERE Image="" OR Image IS NULL
在没有LOAD_FILE的情况下,它更新图像[BLOB - 64 B]
但是当我使用PHP代码显示图像时没有显示
答案 0 :(得分:1)
尝试:
UPDATE `db`.`ts126`
SET `Image` = LOAD_FILE('C:\Users\user\Desktop\aa\bb\cc\placeholder.png')
WHERE Image="" OR Image IS NULL