AS SELECT TOP 100 PERCENT 
		ScreenDDS.ID, 
		ScreenDDS.ScreenName, 
		Paths.PathStr AS [Definition Source], 
		Occurrences.StartRow
FROM    (Occurrences INNER JOIN
        Paths ON Occurrences.PathID = Paths.PathID) INNER JOIN
        ScreenDDS ON Occurrences.OccurID = ScreenDDS.OccurId
WHERE     (ScreenDDS.ID IN (Select * from #numeric_param_temp))
ORDER BY ScreenDDS.ScreenName
