1. select * from
    2. test_users A,
    3. test_hs B
    4. where a.theme=b.username
    5. and b.type='yy';

    image.png

    1. select * from
    2. test_users A,
    3. test_hs B
    4. where a.theme=b.username(+)
    5. and b.type='yy';

    image.png

    1. select * from
    2. test_users A,
    3. test_hs B
    4. where a.theme=b.username(+)

    image.png

    1. select * from
    2. test_users A
    3. left join test_hs B
    4. on a.theme=b.username(+)
    5. and b.type='yy';

    image.png

    1. select * from
    2. test_users A
    3. left join test_hs B
    4. on a.theme=b.username(+)
    5. where b.type='yy';

    image.png