vote up 0 vote down star

I am trying to set every row's CheckColor to Blue in the table tblCheckbook (why the hell do people add tbl to the start of every table, I think I know it's a table).

I'm using this query

UPDATE    tblCheckbook
SET       CheckColor = Blue

However, Microsoft SQL Server Management Studio Express complains Invalid column name 'Blue'.

This has to be a simple fix. What am I doing wrong?

flag

Quotes! (Single quotes) – Michael Haren Jan 30 at 19:47
I hope you have a where clause in, too. Otherwise, you'll be updating EVERY record in that table. – Michael Haren Jan 30 at 19:48
That's the point :) I was trying double quotes but it was giving the same problem. – Malfist Jan 30 at 19:48

3 Answers

vote up 9 vote down check

Try this:

UPDATE    tblCheckbook
SET       CheckColor = 'Blue'
link|flag
vote up 4 vote down

Try adding quote around Blue

UPDATE tblCheckbook SET CheckColor = 'Blue'
link|flag
vote up 7 vote down

use 'Blue' not Blue

link|flag

Your Answer

Get an OpenID
or

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