when I write this query in sql developer:
SELECT c.* FROM NAMES a ,CLOTHES b ,DATE c
WHERE a.NAME_KEY=b.NAME_KEY
AND b.CLOTHE_LABEL LIKE '%A33005%'
AND c.CLOTHE_KEY=a.CLOTHE_KEY
ORDER BY c.CREATE_DATE;
it does not take b as a part of the join and it displays the message :
B is disconnected from the rest of the join graph.
Do you know why is this happening?
This is different than the other question