LeetCode 618: Students Report By Geography
Problem Restatement We are given a table Student containing names and their geography category. Each row has: Column Type Meaning name varchar Student name continent varchar Continent name We need to transform the table so that each continent becomes a column. Each column should list students from that continent in alphabetical order. If one continent has fewer students than another, missing values should be filled with NULL . The result...