I have a table with the following columns
page_number
page_name
image1
image2
image3
image4
image5
image6
image7
image8
when I run the following insert command I get an error
update small_images
set image1='attia01_sm.jpg',
set image2='attia02_sm.jpg',
set image3='attia03_sm.jpg',
set image4='attia04_sm.jpg',
set image5='attia05_sm.jpg',
set image6='attia06_sm.jpg',
set image7=null,
set image8=null,
where page_number= 3;
what is wrong with my insert query?
thanks