Search Results

-1
votes

Is it possible to select sql server data using column ordinal position

If you are using MS SQL 2005 you can use the ROW_NUMBER function. SELECT Col1, Col2, ROW_NUMBER() OVER(ORDER BY Col1) FROM Test WHERE ROW_NUMBER() Over(Order BY Col1) Between @Position AND …