Sorry, my question was poorly worded. What I'm looking for is a way of designating a field in a query numerically rather than the name of the field, e.g.
Instead of:
select customerid from business
something like:
select business->column[0] from business
i.e., select the 1st column from the business table
I know this is possible in Sybase via a different syntax - just wondering if the same kind of thing is possible in mysql.
Thanks,
Al