See, but they're duplicates. It won't let me do NOT IN without an ID:
select name, ssn, detailcode, amount from Output where processdate > '2002-03-06'
and not in
(select name,ssn, detailcode, amount
from Output where processdate > '2002-02-26' and processdate < '2002-03-06')
... but I need...