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
Need a "quiz" application that saves to a database
Calculated variable on server...
xp sp2 clients wont log or ping server 2003
Bash Script to eliminate 2 lines from lots of pages
accessing VPN while Internet Tethering on iPhone
fiddling nose habit
Pivot Table syntax error
Alternative to a cursor
Outlook 2007 - Auto Create Distribution List
Better Search - Full-Text Indexing?