Bạn đã xác định khóa chính là pwlhseis(ma)
. Đó là những gì bạn nên sử dụng cho các tham chiếu khóa ngoại.
Cá nhân tôi đặt tên cho các khóa chính và khóa ngoại cho phù hợp, Vì vậy, điều này sẽ giống như sau:
create table pwlhseis (
pwlhseis_id int primary key,
. . .
);
create table ekdromes (
ekdromes_id int primary key,
. . .
pwlhseis_id int,
);
alter table ekdromes
add constraint fk_ekdromes_pwlhseis foreign key (pwlhseis_id) references pwlhseis(pwlhseis_id);