Your question is a bit confusing, but I'm guessing here join is your friend:
SELECT *
FROM ItemAppearance ia LEFT JOIN
ItemModifiedAppearance im
ON ia.ID==im.ItemAppearanceID JOIN
ItemSearchName isn
ON ia.ID==isn.ID
WHERE ia.DisplayType = 4;
So that just gets all 3 databases, where all the id's match, but only the ones that are in ItemAppearance that are of DataType 4.
Hopefully that helps, or makes sense, or was even in the ballpark of your question. Let me know.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…