Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 26th, 2012  |  syntax: None  |  size: 0.26 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. how do I query a column that has a name similar to a reserved word? [closed]
  2. SELECT thing.Column FROM mytable thing
  3.        
  4. SELECT [thing].[Column] FROM [mytable] AS [thing]
  5.        
  6. SELECT thing.[Column] FROM mytable thing
  7.        
  8. SELECT thing."Column" FROM mytable thing