Doug is right about this.. but you can try:
select * from table MINUS select top 1 * from table (access syntax)
select * from table EXCEPT select top 1 * from table (sql server 2005 syntax)
select * from table NOT IN (select top 1 * from table) (sql standard syntax, but i think this will be very slow)
HTH
Gonzalo
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
^^Took that from dparsons signature and he Took that from planoie's profile
================================================== =========
My programs achieved a new certification (can you say the same?):
WORKS ON MY MACHINE
http://www.codinghorror.com/blog/archives/000818.html
================================================== =========
I know that CVS was evil, and now i got the proof:
http://worsethanfailure.com/Articles...-Hate-You.aspx
================================================== =========