[sql]
select TCode
from Tracking
where not exists (select *
from Task
where Task.TCode = Tracking.TCode
)
[/sql]