What you are missing in your SQL are the fields into which the values you have specified will go.
Here is an example.
There is a table called 'Person' with the following fields
1) Name varchar(20)
2) Age int(2)
3) Sex char(1)
The correct syntax will be
insert into person(name, age, sex)...