null,
it_description varchar(50) 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_first(
it_type_first int primary key not null,
it_description varchar(50) not null,
it_type_second int not null,
)
Не в том проблема. Третья должна ссылаться на вторую, вторая на первую. А у тебя наоборот.
Есть ли вообще смысл для поля первичного клуча устанавливать not null?
Вообще нет, в привычку уже вошло
Обсуждают сегодня