Report: Documents linked to people not to an event

Description: Documents linked to people not to an event


Copy and paste the text between the lines into the reports section below "OR Leave Display, Criteria and Sort fields blank and enter direct SQL SELECT statement here:" and give it the title you think is appropriate


SELECT description, p.personID, p.gedcom, p.lastname, p.firstname, p.living, p.gedcom 
FROM tng_media AS m LEFT JOIN tng_medialinks AS ml ON (ml.mediaID=m.mediaID AND ml.gedcom=m.gedcom) 
LEFT JOIN tng_people AS p ON (ml.personID=p.personID AND ml.gedcom=p.gedcom) WHERE mediatypeID="documents" 
AND eventID="" 
ORDER BY description