EXPLAIN
SELECT	*
FROM	tab1 a
	LEFT JOIN
	tab1 b
	ON a.i = b.i
WHERE	a.i = ANY (
		SELECT  tab2.k
		FROM	tab2
		WHERE	k = a.j);
