Advertisement
apl-mhd

Zakaria Sir Assignment

Sep 16th, 2018
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.51 KB | None | 0 0
  1. FOR more info
  2. Argentina 14->team->1
  3. Croatia 13-> tem->2
  4. matchid->23
  5. Performanceid-> 44<->460
  6.  
  7.  
  8. http://www.goal.com/en-gb/MATCH/argentina-v-croatia/commentary-RESULT/bwhgq3x658klgh6zg42l2882x
  9. /*Argentina*/
  10. SELECT player_id, player_name, team.team_name FROM player
  11. JOIN team ON player.team_id = team.team_id
  12. WHERE team.team_id = 14;
  13.  
  14. /*Croatia*/
  15.  
  16. SELECT player_id, player_name, team.team_name FROM player
  17. JOIN team ON player.team_id = team.team_id
  18. WHERE team.team_id = 13;
  19.  
  20.  
  21. ****************************
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement