Is it possible to select sql server data using column ordinal position - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T18:25:51Zhttp://stackoverflow.com/feeds/question/368505http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/368505/is-it-possible-to-select-sql-server-data-using-column-ordinal-position3Is it possible to select sql server data using column ordinal positionrams2008-12-15T14:21:20Z2008-12-15T15:00:31Z
<p>Is it possible to select column data using the ordinal_position for a table column? I know using ordinal positions is a bad practice but for a one-off data import process I need to be able to use the ordinal position to get the column data.</p>
<p>So for example </p>
<pre><code>create table Test(
Col1 int,
Col2 nvarchar(10)
)
</code></pre>
<p>instead of using</p>
<pre><code>select Col2 from Test
</code></pre>
<p>can I write</p>
<pre><code>select "2" from Test -- for illustration purposes only
</code></pre>
http://stackoverflow.com/questions/368505/is-it-possible-to-select-sql-server-data-using-column-ordinal-position/368525#3685251Answer by Michael Haren for Is it possible to select sql server data using column ordinal positionMichael Haren2008-12-15T14:27:04Z2008-12-15T14:27:04Z<p>Yes, you could do this with some really ugly hits into the system tables. You'd probably need to fall into the world of dynamic sql. </p>
<p>I really, really do not recommend this approach.</p>
<p>If that didn't deter you, then this might get you started (<a href="http://www.experts-exchange.com/Databases/Q_21310849.html" rel="nofollow">ref</a>):</p>
<pre><code>select table_name, column_name, ordinal_position, data_type
from information_schema.columns
order by 1,3
</code></pre>
http://stackoverflow.com/questions/368505/is-it-possible-to-select-sql-server-data-using-column-ordinal-position/368532#3685321Answer by Eric Minkes for Is it possible to select sql server data using column ordinal positionEric Minkes2008-12-15T14:29:22Z2008-12-15T14:29:22Z<p>No, you can't select columns based on their ordinal position, as far as I know.</p>
<p>When looking at the transact SQL reference, there is nothing to suggest you can
(<a href="http://msdn.microsoft.com/en-us/library/ms176104(SQL.90).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms176104(SQL.90).aspx</a>).</p>
http://stackoverflow.com/questions/368505/is-it-possible-to-select-sql-server-data-using-column-ordinal-position/368555#3685550Answer by Booji Boy for Is it possible to select sql server data using column ordinal positionBooji Boy2008-12-15T14:39:11Z2008-12-15T14:39:11Z<p>You can use this query </p>
<pre><code>select * from information_schema.columns
</code></pre>
<p>to get the ordinal positions of the columns. Like Michael Haren wrote, you'll have to build a dynamic query using this, either in code or in a sproc that you pass the column positions to. </p>
<p>FWIW, this is pure evil. </p>
<p>Alos, deathofrats is right, you can't really do this, since you'll be building a regular query w/ column names based on position. </p>
http://stackoverflow.com/questions/368505/is-it-possible-to-select-sql-server-data-using-column-ordinal-position/368556#3685560Answer by robsoft for Is it possible to select sql server data using column ordinal positionrobsoft2008-12-15T14:39:23Z2008-12-15T14:39:23Z<p>I don't think you can. As @Michael Haren showed, you can use ordinal positions in ORDER BY clauses but I've never seen them used elsewhere in SQL Server.</p>
<p>I'm not sure what problem you are havng with your one-off data import that this would help with - presumably some unfortunate column name? Can you explain a little more?</p>
http://stackoverflow.com/questions/368505/is-it-possible-to-select-sql-server-data-using-column-ordinal-position/368558#3685580Answer by rams for Is it possible to select sql server data using column ordinal positionrams2008-12-15T14:40:06Z2008-12-15T14:40:06Z<p>@Michael - After getting the ordinal position how would I use that information to get data out of column #3 (say)</p>
<p>@deathofrats - That's what it looks like. All the documentation I read before posting the question suggested that it is not possible. </p>
http://stackoverflow.com/questions/368505/is-it-possible-to-select-sql-server-data-using-column-ordinal-position/368578#3685781Answer by Booji Boy for Is it possible to select sql server data using column ordinal positionBooji Boy2008-12-15T14:45:17Z2008-12-15T14:45:17Z<p>You'd have to do sosmething like </p>
<pre><code>declare @col1 as varchar(128)
declare @col2 as varchar(128)
declare @sq1 as varchar(8000)
select @col1 = column_name from information_schema.columns where table_name = 'tablename'
and ordinal_position = @position
select @col2 = column_name from information_schema.columns where table_name = 'tablename'
and ordinal_position = @position
set @sql = 'select ' + col1 ',' + col2 'from tablename'
exec(@sql)
</code></pre>
http://stackoverflow.com/questions/368505/is-it-possible-to-select-sql-server-data-using-column-ordinal-position/368596#3685960Answer by Tom H. for Is it possible to select sql server data using column ordinal positionTom H.2008-12-15T14:51:53Z2008-12-15T14:51:53Z<p>I don't know of any way to do this short of using dynamic SQL. Maybe if you include a bit more information about why you feel you have to use the ordinal values someone on here can give you advice on how to get around that problem.</p>
<p>EDIT: I see that you answered this to some degree in another comment. Can you provide more specifics? The import proc and/or table definitions?</p>
http://stackoverflow.com/questions/368505/is-it-possible-to-select-sql-server-data-using-column-ordinal-position/368616#368616-1Answer by unknown (yahoo) for Is it possible to select sql server data using column ordinal positionunknown (yahoo)2008-12-15T15:00:31Z2008-12-15T15:00:31Z<p>If you are using MS SQL 2005 you can use the ROW_NUMBER function.</p>
<p>SELECT Col1, Col2, ROW_NUMBER() OVER(ORDER BY Col1)
FROM Test
WHERE ROW_NUMBER() Over(Order BY Col1) Between @Position AND @Position</p>
<p>That should get you the desired results if I am reading the question correctly.</p>