Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using MySQL 5.5 and phpmyadmin 3.5.2 (provided by http://www.freewebhostingarea.com)

My sql query is:

INSERT INTO `example`(`id`, `name`, `password`) VALUES (1,we,5)

where id is int type, name and password are varchar

but when ever inserting any value other than integer in name and age,it displays #1054 error, i.e

#1054 - Unknown column 'we' in 'field list'
share|improve this question

2 Answers

up vote 1 down vote accepted

You must surround any strings with quotes.

INSERT INTO `example`(`id`, `name`, `password`) 
VALUES               (1,'User Name','Password123')
share|improve this answer

You have to add '' for we and probably for password:

INSERT INTO `example`(`id`, `name`, `password`) VALUES (1,'we','5')

because both values are char type.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.