I am confused. I don't know what is the error. On execution I got a message:
" You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group(creator,type,name,details,icon)values (6,'information sharing','test','j' at line 1"
my query is :
INSERT INTO group
(creator, type, name, details, icon) VALUES
(6, 'information sharing', 'test', 'just for testing',
'My friend/group_uploads/pic00_6_0d46839f6371fb84f6b6c682f5fc2c77.jpeg')
this my table specification:
type varchar(1000)
name varchar(1000)
details varchar(1000)
creator bigint(20)
icon varchar(1000)
please help me to correct the error .