i checked the online sybase docs for EXCEPT, which, i believe, is the sql standard operator, but couldn't find anything on it
so let's do it the old fashioned way (the way we had to accomplish the same results before the new-fangled join operators)
select whatever
from table1 T1
where not exists
( select 1
from table2
where id = T1.id )
rudy