Search Results

5
votes

SQL User Defined Function Within Select

Yes, you can do almost that: SELECT dbo.GetBusinessDays(a.opendate,a.closedate) as BusinessDays FROM account a WHERE... Assuming that you are using MS SQL …
-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 …