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 To Check Packets for Urls
redirecting content from client to server
RDP blocking @ switch
Blackberry browser 400 error - socketexception Connection reset
IE8 initial setup
VB6 - crytl32.ocx - Windows 7 Ultimate 64bits: Cannot load !
Infopath 2007 client application with .net code
how the BIOS read (load) the first 512 bytes of a bootable hard disk
extending jQuery autocomplete plugin functionality
Display logon message to new users at first logon.