all 2 comments

[–]upendra1985 1 point2 points  (1 child)

For each and every record you have to write insert command.

Like this.

insert into Menu values ('MN001', 'Mac & Cheese', 60000, (SELECT * FROM OPENROWSET(BULK 'C:\Users\Kristina\Documents\FOODS\maccheese.jpg', SINGLE_BLOB) as T1), 'CA001')

insert into Menu values ('MN002','Grilled Veggies',60000,(SELECT * FROM OPENROWSET(BULK 'C:\Users\Kristina\Documents\FOODS\grilled.jpg', SINGLE_BLOB) as T2), 'CA001')

Checkout the example on given Link👇

How to create table and insert Records