таблицы в базе (3 нормальная форма)
Привязка от каскадная
Насколько правильно использовать следующий скрипт?
create table issue_type_first(
it_type_first int primary key not null,
it_description varchar(50) not null,
it_type_second int not null,
)
create table issue_type_second(
it_type_second int primary key not null,
it_description varchar(50) not null,
it_type_third int not null,
)
create table issue_type_third(
it_type_third int primary key not null,
it_description varchar(50) not null,
)
А с какой программы скрин
скрин с drawIO
Спасибо.
то есть нужно не так
Обсуждают сегодня