Following is my SQL query:
Attempt 1
INSERT INTO `product`(`productid`, `title`, `category`, `description`)
VALUES (NULL,`iMac`,`Desktop`,`With its enhanced, big and beautiful display, the new Apple iMac M-D093-B/A 21.5 Desktop Computer renders your movies, photos, web pages and other graphics in truly jaw-dropping detail.`)
Attempt 2
INSERT INTO `product`(`productid`, `title`, `category`, `description`)
VALUES(` `,`iMac`,`Desktop`,`With its enhanced, big and beautiful display, the new Apple iMac M-D093-B/A 21.5 Desktop Computer renders your movies, photos, web pages and other graphics in truly jaw-dropping detail.`)
I keep getting an error of : MySQL returned an empty result set (i.e. zero rows). ( Query took 0.0003 sec )
I don't understand what am i doing wrong. Here is my column name list
1 productid int(11)
2 title varchar(100)
3 category varchar(100)
4 description varchar(2000)
table name:product