How to insert BLOB and CLOB files in MySQL?

前端 未结 6 981
猫巷女王i
猫巷女王i 2020-11-28 08:26

I want to store images and .docx/.doc, .pptx/.ppt, .pdf files using the front end of my software. I don\'t understand how to implement this and how to insert the BLOB and CL

6条回答
  •  醉话见心
    2020-11-28 08:49

    INSERT INTO table1 VALUES(1, LOAD_FILE(data.png));
    

    won't work but

    INSERT INTO table1 VALUES(1, LOAD_FILE('data.png'));
    

    should (assuming data.png exists in the local directory)

提交回复
热议问题