I have three tables:
Jobs
    JobId
    StartDate
    RehireDate
Paperwork
    PaperworkId
    DocumentName
JobPaperwork
    JobId
    PaperworkId
    Completed
I need to find any jobs where a document has NOT been assigned to it that has a certain document name. I'm not sure how to construct this query. Using NOT IN doesn't work because it returns every job since it's finding jobs with other paperwork assigned to them.  
Here's what I started with:
select j.jobid 
from Job j 
inner join JobPaperwork jp on j.JobId = jp.JobID 
where j.startdate > dateadd(day, -30, getdate()) 
  and j.rehiredate is not null 
  and jp.PaperworkID not in (select paperworkid 
                             from Paperwork 
                             where documentname like '%searchterm%') 
 
     
     
    