I have 2 table:
First table
Course     Price 
English    $250
Chinese    $300
Math       $500
Second table:
Name       Course
Vivian     English
Vivian     Math
Shar       Math
Nick       Math
Tan        Chinese
I wish to have a code to get the table like this which the price column in second table is actually will refer to table one:
Name       Course      Price($)
Vivian     English     250
Vivian     Math        500
Shar       Math        500
Nick       Math        500
Tan        Chinese     300
