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
Get the ip of the server running the application
To Blob Cache or NOT?
Registry key property value
Access 2003 -> Word 2003 - have a question on code that works to save doc as pdf file...
Can I add multi-millions of records to SQL database while replication is on? Will it work?
unknown process - should I be concerned
MySQL Rows to Columns by Group
Quickr..How do I edit the tabs on the home page of my place? I want to add a tab
Split strings with RegEx
Import text file - definition (field name, delimited, lng) based on a table