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
Transfer A File using Bluetooth
ASP.Net,C# (Rawprinterhelper spools jobs but not printing)
Change default GAL to contacts in exchange 2010 or outlook
Indexing of word 2007 files, break lines are removed
Send Mail via Google Apps
Delphi variant array
Convert web.config from .NET 3.5 to 4.0
security updates for windows 2003 server not downloading
problem exportting gridview to excel spreadsheet
I need to read a text file and map it to an Access Table