|
Blue Forest http://www.lslnet.com at 8:28 on August 25, 2006
How to choose the database records show Access a database using asp script
If I was to show 0-1000
Or 1001-2000
Or 2001-3000
How to solve this problem
Selected at random among the several successive record
How to solve this problem |
Sentence structure to conduct inquiries different sgl |
N1=1001
N2=2001
Sql= "select top" &n2-n1& "* from table where id not in (select top" &n1& "id from table)" |
|