vote up 1 vote down star

I need a table that stores key-value pairs, so I created one with a column called "Key" and a column called "Value".

This fails:

insert into mykeyvalues (Key,Value) values ('FooKey', 'FooValue')

"Incorrect syntax near the keyword 'key'."

Maybe I shouldn't call it "Key", but I just wonder if it is possible to work with a column who's name is a sql keyword?

Thanks

flag

2 Answers

vote up 4 vote down check

You can surround column names like that with [ ] brackets. Therefore:

insert into mykeyvalues ([Key],[Value]) values ('FooKey', 'FooValue')
link|flag
Thanks for your answer! – Kurt May 30 at 3:46
vote up 6 vote down

Use either backticks (`) or double quotes (") around the identifiers in your query. For example:

INSERT INTO mykeyvalues ("Key", "Value") values ('FooKey', 'FooValue')

But in the long-run, this just reduces portability. It's easier to use a different name.

link|flag
Actually, I believe that your example is ANSI SQL standard-conformant. – RBarryYoung May 30 at 3:34
Yes, but real-life DBs often don't respect ANSI -- e.g. one wants double quotes, another one wants brackets, yet another wants backticks, etc, etc -- one headache after the other:-( – Alex Martelli May 30 at 3:47
Thanks. I'm not sure whether John's answer or this one should be the accepted answer. Both works like a charm. – Kurt May 30 at 3:50
this one should be the correct answer, it's T-SQL and not only MS-SQL, so it will work with almost all SQL queries and not only queries running on Microsoft SQL Server... – balexandre May 30 at 5:17
It assumes SET QUOTED IDENTIFIER ON for MS SQL. ANSI or not, using " is confusing and hard for readability if you only us MS SQL. – gbn May 30 at 9:47

Your Answer

Get an OpenID
or

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