Field Id Value?

  • Thread starter Thread starter Michael Warne
  • Start date Start date
M

Michael Warne

is it possible to reference a field within a query via an id value.

field(0), field(1), etc...


mike
 
The only place I know of that it works is in the ORDER By Clause. For Example:

SELECT FieldA, FieldB, FieldC
FROM Tablename
ORDER BY 2
 
Back
Top