Suppose I want to create 2 tables -- Department, Student
Student {
name,
id,
address
}
Department {
Dept_name,
Students[] student,
}
in which "department" table contains a group of "student".
How to do the "create table" statement for "department" ? Please help.