How to print the image?
SQL
create table product
(product_id char(6) primary key not null,
product_name varchar(25) not null,
supplier_id char(4) not null,
price double not null,
sell_unit varchar(10) not null,
image varchar(50) not null,
point_unit integer not null);
insert into product values ('J00001', 'Ichiban Ramen Noodle Soup - Pork Flavor', 'J002', '5', '12 packs', 'Product/J00001.jpg', '15');
the image location is stored at image
Thank you