I'm using SQL Server, and I get a syntax error on a syntax error on a statement that uses "top" as a field name. But the table has a field named top, so how I do SELECT it?

VB Code:
  1. 'This gives me an error
  2. SQL = "SELECT myField, top, myOtherField FROM myTable"