I want to know If there is any way to load an image into a table like:
CREATE TABLE MyTable(
id INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY,
images BLOB NOT NULL,
INSERT INTO MyTable (image) VALUES(LOAD_FILE('/tmp/your_image.png'));
But also if i can add an url instead of the path to my image:
INSERT INTO MyTable (image) VALUES(LOAD_FILE('https://imgur.com/gallery/6rKiG'));
You can try this:
And then with PHP (for example) you can read and print
For reference LOAD_FILE