I hope to find a way to get the value in the Nth column of a dataset.
Thus, for N = 6 I want
SELECT (Column6Value) from MyTable where MyTable.RowID = 14
Is there a way to do this in TSQL as implemented in SQL Server 2005? Thanks.
|
1
|
I hope to find a way to get the value in the Nth column of a dataset. Thus, for N = 6 I want
Is there a way to do this in TSQL as implemented in SQL Server 2005? Thanks.
|
||||
|
|
|
You should be able to join with the system catalog (Information_Schema.Columns) to get the column number. |
||
|
|
|
If you know the range of n you could use a case statement
As far as I know there is no dynamic way to replace a column (or table) in a select statement without resorting to dynamic sql (in which chase you should probably refactor anyways) |
|||
|
|
|
|
Not sure if you're at liberty to redesign the table, but if the ordinal position of the column is significant, your data is not normalized and you're going to have to jump through lots of hoops for many common tasks. Instead of having table MyTable with Column1... ColumnN you'd have a child table of those values you formerly stored in Column1...ColumnN each in their own row. For those times when you really need those values in a single row, you could then do a PIVOT: http://geekswithblogs.net/lorint/archive/2006/08/04/87166.aspx Edit: My suggestion is somewhat moot. Ash clarified that it's "de-normalization by design, it's a pivot model where each row can contain one of any four data types." Yeah, that kind of design can be cumbersome when you normalize it. |
||||||
|
|
|
This works:
But why you would ever do something like this is beyond me, what problem are you trying to solve? |
||
|
|
|
Implementation of @Mike Sharek's answer.
I agree with Sambo - why are you trying to do this? If you are calling the code from C# or VB, its much easier to grab the 6th column from a resultset. |
||
|