i created this table
create table courses (
cid int primary key not null,
cname varchar(25) )
and when i tried to insert any thing like that
insert into courses values (1,name)
i have this error
insert into courses values (1,`ahmed`)
Error Code: 1054. Champ 'ahmed' inconnu dans field list 0.000 sec
when i try to add only cid it's ok , i removed the table and created it twice and the same problem
what is the wrong thing here?