Easiest way?  Recycle your new "Top 10" query as a subquery.

SELECT student_pop
FROM table1
WHERE student_pop NOT IN (
  SELECT top 10 student_pop
  FROM table1
  ORDER BY whatever
)

-Rick

-----Original Message-----
From: Jim Watkins [mailto:[EMAIL PROTECTED]]
Sent: Monday, October 16, 2000 22:55
To: CF-Talk
Subject: Thanks was RE: returning top 10


So far so good.  Now I have written another script that selects everyone NOT
in the top ten counties (rows).  How can I do that without naming the
counties?

------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to