I need to insert the following into my table...My users table has five columns id, username, password, name, entry. (im not submitting anything into entry just yet i will use php to do that later on) but for some reason i keep getting this error: #1054 - Unknown column 'const89' in 'field list' Why is it reading the value as a column?
INSERT INTO users VALUES(1,const89,cdm89,constantin);
I have also tried INSERT INTO users (id,username,password,name) VALUES(1,const89,cdm89,constantin);
which gives me the same exact error.