Skip to content

Latest commit

 

History

History
81 lines (33 loc) · 1.33 KB

File metadata and controls

81 lines (33 loc) · 1.33 KB

中文文档

Description

A U.S graduate school has students from Asia, Europe and America. The students' location information are stored in table student as below.

 

| name   | continent |

|--------|-----------|

| Jack   | America   |

| Pascal | Europe    |

| Xi     | Asia      |

| Jane   | America   |

 

Pivot the continent column in this table so that each name is sorted alphabetically and displayed underneath its corresponding continent. The output headers should be America, Asia and Europe respectively. It is guaranteed that the student number from America is no less than either Asia or Europe.

 

For the sample input, the output is:

 

| America | Asia | Europe |

|---------|------|--------|

| Jack    | Xi   | Pascal |

| Jane    |      |        |

 

Follow-up: If it is unknown which continent has the most students, can you write a query to generate the student report?

 

Solutions

SQL