My school told us that we need to make a database in MySQL. That database contains relationships and tables only nothing more and its only for study. So I'd like if anyone could confirm if what I did is right.
I have two tables, teachers and projects, and one relationship, work_in. I want to make a relationship between reasearch_field_teachers and reasearch_field_projects:
Teachers
CREATE TABLE teachers(code_teachers int(8)not null,
name_teachers varchar(25),
age_teachers int(3),
reasearch_field_teachers varchar(25)not null,
code_supervisor int(8)not null,
primary key(code_teachers, reasearch_field_teachers,code_supervisor)
)
ENGINE = MyISAM;
Projects
CREATE TABLE projects(code_projects int(8)not null,
name_projects varchar(25),
reasearch_field_projects varchar(25)not null,
primary key(code_projects, reasearch_field_projects)
)
ENGINE = MyISAM;
work_in
CREATE TABLE work_in (
reasearch_field_teachers varchar(25)not null,
reasearch_field_projects varchar(25)not null,
primary key(reasearch_field_teachers,reasearch_field_projects),
foreign key(reasearch_field_teachers)references teachers(reasearch_field_teachers),
foreign key(reasearch_field_projects)references projects(reasearch_field_projects)
)
ENGINE = MyISAM;
Also
If this is right, I want to make a relationship from one table not two tables unlike the example above.