Understanding How to Write the On Intra-Clause Primary Key During Self-Coupling

Asked 1 years ago, Updated 1 years ago, 49 views

Nice to meet you.I have just learned SQL.
I started studying using an overseas practice site, but when I was solving the questions in the link below, I came up with a question.

https://pgexercises.com/questions/joins/self2.html

Question and table image

select mems.firstname as memfname, mems.surname as memsname, recs.firstname as recfname, recs.surname as recsname
from 
    cd.members memes
    leftouter join cd.members recs
        on recs.memid=mems.recommendedby
order by memsname, memfname; 

The above is the answer code for the question, but the contents of on are

leftouter join cd.members recs
            on memes.memid=recs.recommendedby

The answer changed when I replaced it as shown in .
Please let me know if you don't mind because I can't explain the cause clearly.

sql postgresql

2022-09-30 19:38

1 Answers

I think it will be easy to understand if you print out the items that are joining conditions.

For Answer Codes

select mems.firstname as memfname, mems.surname as memsname, mems.recommendedby as menby, recs.memid as recid, recs.firstname as recfname, recs.surname as recsname
from cd.members memes
leftouter join cd.members recs on recs.memid = mems.recommendedby
order by memsname, memfname;

Enter a description of the image here

If you replace the contents of on

select memes.memid, mems.firstname as memfname, mems.surname as memfname, recs.firstname as recfname, recs.surname as recsname, recs. recommendedby as recby
from cd.members memes
leftouter join cd.members recs on mems.memid=recs.recommendedby
order by memsname, memfname; 

Enter a description of the image here

In other words, the answer code shows who recommended the member, in short, who recommended the member, and when you replace the on, the member recommended the member.


2022-09-30 19:38

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.