-2
CREATE TABLE employee_detail(
 e_id int auto_increment,
 name varchar(20) not null,
 address varchar(20) not null,
 status varchar(200) not null,
 primary key (e_id),    
);

これは私の最初のテーブル ( ) であり、次のテーブル ( )employee_loginの外部キーとして e_id が必要です。login

CREATE TABLE login(
 login_id int auto_increment,
 username varchar(20) not null,
 password varchar(20) not null,
 primary key (login_id),
 e_id references employee_detail(e_id) 
);
4

2 に答える 2