以下は私のSQLクエリです:
試行 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.`)
試行 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.`)
次のエラーが表示され続けます:MySQL returned an empty result set (i.e. zero rows). ( Query took 0.0003 sec )
何が間違っているのかわかりません。ここに私の列名リストがあります
1 productid int(11)
2 title varchar(100)
3 category varchar(100)
4 description varchar(2000)
テーブル名:製品