Exercise 8:618.Students Report By Geography
1.Description
| name | continent |
|--------|-----------|
| Jack | America |
| Pascal | Europe |
| Xi | Asia |
| Jane | America || America | Asia | Europe |
|---------|------|--------|
| Jack | Xi | Pascal |
| Jane | | |2.Create Table and insert into values
create table if not exists leetcode.ex_618_student
(name string, continent string ) stored as orc ;
INSERT INTO table leetcode.ex_618_student VALUES
('Jack' , 'America'),
('Pascal' , 'Europe'),
('Xi' , 'Asia'),
('Jane' , 'America')Last updated