I'm learning SQL from codecademy right now.
My 1st question.. I understood that Left join is to combine 2nd table without duplicating the condition of "ON." From the pictures below, could someone explain why I see duplicated "subscription_id" column that has been added from the 2nd table "prev_q"? I just wanted to see the column "sub_numb" to be added to the 1st table "subscriptions."
My 2nd question.. When I do JOIN in general, how do I select all from table1 and only few columns from table 2? In my head, I'm thinking something like:
SELECT *(table1), <<<< this is the part that I'm not so sure about..
table2.column_name1,
table2.column_name2,