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
receiving read receipts a lot
Entourage email signature set up
Exchange 2010 Server Specs
Need to Create A Form With 2 Actions.
SCCM Task Sequence Runas
Checkpoint VPN Site to Site Issue - encryption failure: Unknown SPI: 0xb41565ee for IPsec packet.
How to generate PDF open with new window ?
mx lookup and ping of same site give different ip, cant reach internal subdomain.
MAGENTO ENTERPRISE: Need to make static link in category menu (always display throughout layers)
Preparing email output in PHP script