how can I select one or more columns from a table by column-index and NOT by columnname?
I got the columnIndices of table by using this query
SELECT name, colid
FROM sys.syscolumns
WHERE (id =
(SELECT id
FROM sys.sysobjects
WHERE (name = 'table_name')))