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
C# sharing variables or data between different classes
VB.NET Setup Installing App Files Without Asking What Folder to Install
Php 500 internal server error received on website but not using xampp at home
Gmail Like File Upload
Microsoft Access Database Engine 2010 Redistributable and "OpenRowSet"
Delivery not authorized, message refused. 550-5.7.1 Message targeted to organization's federated delivery mailbox.
OWA idle time in Exchange 2010
mySQL complicated unions and subqueries
how to hide/ view columns in a gridview using checkboxes in CustomEditorpart in sharepoint
With regards to correlated subqueries does anybody know what the logical query processing order?