Microsoft
Software
Hardware
Network
Question : SQL Syntax for SELECT TOP 25 PERCENT, SELECT NEXT 35%, SELECT NEXT 15%, etc...
What's the most efficient way to do this. I know I can use
SELECT TOP 25 PERCENT * and then DELETE TOP 25 PERCENT * and then SELECT TOP 35 PERCENT * and so on.
Is there a more direct way? Thanks!
Answer : SQL Syntax for SELECT TOP 25 PERCENT, SELECT NEXT 35%, SELECT NEXT 15%, etc...
you can do this
select top :end percent * from mytable
minus
select top :start percent * from mytable
to find data between end & start (say %25 and %50)
Random Solutions
how can i get Hard Disk Serial number (unique) in C#.net web application ??
Microsoft Outlook 2007 is pulling duplicate emails from free hotmail live server - how can I prevent this, its driving me mad.
Enumerable or Strongly typed List of Guids
ORA: 6533 Subscript out of range
swf file won't play on the web
How to Transfer All ZIP files from a FTP Directory using Powershell
trying to print to HP laserjet 2050 - and constantly have to hit "ok" button to print
Problem getting the Selected value of a CheckBoxList (used in a gridview)
Update HP onboard administrator SSH version?
Updating a Data Set that has been returned from a Function or DLL