로딩
티스토리 데이터 처리 중입니다.

SQL Zoo 07 - JOIN

 SQL Zoo 07 - JOIN

SQL Zoo 07 - JOIN Database 문제 1. The first example shows the goal scored by a player with the last name 'Bender'.

The * says to list all the columns in the table - a shorter way of saying matchid, teamid, player, gtime. Modify it to show the matchid and player name for all goals scored by Germany.

To identify German players, check for: teamid = 'GER' 정답 1 2 3 SELECT matchid, player FROM goal WHE.....

원문 링크 : SQL Zoo 07 - JOIN