You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--reference: https://discuss.leetcode.com/topic/92752/accept-solution and https://leetcode.com/articles/students-report-by-geography/#approach-using-session-variables-and-join-accepted
set @a =0;
set @b =0;
set @c =0;
SelectAmerica.nameas America, Asia.nameas Asia, Europe.nameas Europe from
(select name, @a := @a +1as id from student where continent ='America'order by name) as America
Left Join
(select name, @b := @b +1as id from student where continent ='Asia'order by name) as Asia onAmerica.id=Asia.id
Left Join
(select name, @c := @c +1as id from student where continent ='Europe'order by name) as Europe onAmerica.id=Europe.id