首页 新闻 会员 周边

在面试时候遇到了一道不会的sql查询题,有没有人愿意指点一下?

0
[已关闭问题] 关闭于 2018-03-24 15:49

You are given two tables, teams and matches, with the following structures:

create table teams ( team_id integer not null, team_name varchar(30) not null, unique(team_id) ); create table matches ( match_id integer not null, host_team integer not null, guest_team integer not null, host_goals integer not null, guest_goals integer not null, unique(match_id) );

Each record in the table teams represents a single soccer team. Each record in the table matchesrepresents a finished match between two teams. Teams (host_team, guest_team) are represented by their IDs in

the teams table (team_id). No team plays a match against itself. You know the result of each match (that is, the number of goals scored by each team).

You would like to compute the total number of points each team has scored after all the matches described in the table. The scoring rules are as follows:

 

  • If a team wins a match (scores strictly more goals than the other team), it receives three points.

 

  • If a team draws a match (scores exactly the same number of goals as the opponent), it receives one point.

 

  • If a team loses a match (scores fewer goals than the opponent), it receives no points.

 

Write an SQL query that returns a ranking of all teams (team_id) described in the table teams. For each team you should provide its name and the number of points it received after all described matches (num_points). The table should be ordered by num_points (in decreasing order). In case of a tie, order the rows by team_id (in increasing order). For example, for

 

 

 

苍烟落照的主页 苍烟落照 | 初学一级 | 园豆:104
提问于:2018-03-24 15:48
< >
分享
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册