vote up 0 vote down star

I'm working with a legacy database with columns such as "item" and "desc" (for description).

Obviously, there's issues when trying to do an ordered select such as:

SELECT item, desc FROM blah ORDER BY desc

The intent is to do an ascending sort of column "desc", but SQL server gets confused since desc is also a modifier for order by... How do I escape the field name so that it work appropriately? Do I have to select a second copy of that column as a different name to use in the order by?

flag

75% accept rate

2 Answers

vote up 14 vote down check

Surround the keyword desc with square brackets:

SELECT item, [desc] FROM blah ORDER BY [desc]
link|flag
6  
This is true for all situations that require use of a reserved keyword as a literal. – Tomalak May 27 at 16:52
vote up 0 vote down

select b.item,b.desc from blah as b order by b.desc asc

I was wrong. The above is indeed incorrect. Brackets are the way to go.

link|flag
Why was this downvoted? Even if it's not the "best" answer, it does work... – GalacticCowboy May 27 at 16:57
Considered that, but it would break legacy code (depending on retrieving "desc" later on, not "b.desc"). Might be workable if it's legal to select in a way as to get desc and b.desc both. Didn't pursue as it seemed ugly and unnecessary. – Brian Knoblauch May 27 at 16:58
Brian, can you give an example when "it would break legacy code"? The best practice is to always qualify column names, and it never breaks code, it makes it more robust. sqlblog.com/blogs/alexander_kuznetsov/… – AlexKuznetsov May 27 at 17:05
If I understand how it works, I'd have to find all the legacy references to lines like rs.getString("desc") and change them all to rs.getString("b.desc"). Normally not an issue, but this codebase passes ResultSets around all over the place and it gets ugly real quick trying to make even simple changes. Will need some heavy refactoring to make it reasonable again, but that's not happening for awhile (not our main project, just hopping in quick to make a tweak). – Brian Knoblauch May 27 at 17:25
1  
No--as long as b.desc is the only "desc" column, your RS calls in the outer code can still just call it "desc". rs.getString("desc") will still work. – RolandTumble May 27 at 17:30
show 3 more comments

Your Answer

Get an OpenID
or

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