User - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T23:18:33Zhttp://stackoverflow.com/feeds/user/17670http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://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>
http://stackoverflow.com/questions/363838/sql-user-defined-function-within-select/363857#3638575Answer by unknown (yahoo) for SQL User Defined Function Within Selectunknown (yahoo)2008-12-12T19:22:18Z2008-12-12T19:22:18Z<p>Yes, you can do almost that: SELECT dbo.GetBusinessDays(a.opendate,a.closedate) as BusinessDays
FROM account a
WHERE...</p>
<p>Assuming that you are using MS SQL</p>
http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/92519#925190Answer by unknown (yahoo) for What do you use to keep notes as a developer?unknown (yahoo)2008-09-18T13:27:55Z2008-09-18T13:27:55Z<p>I have currently begun using sharepoint. More because VS Team Foundation automatically creates a sharepoint site for each project created. This, so far has been an excellent place to put documents about the project (Design docs, 3rd party utility docs etc) as well as forum like dicussion boards etc.</p>
<p>Now, that being said, that is project / team based. We also have a division level sharepoint site where we do much the same. </p>
<p>Personally (Outside of the company) I have tried onenote but I will certainly checkout some of the suggestions made here.</p>