1
CREATE TABLE if not exists PatientDetails
(pt_id varchar(15) not null,
pt_name varchar(20) not null,
pt_sname varchar(20) not null,
pt_age numeric,
primary key(pt_id));
create table if not exists who_staging.Symptom (
sypt_id varchar(12) not null,
symptom varchar(20) not null,
primary key(sypt_id)
);
create table if not exists Medicine(
medi_id varchar(12) not null,
medi_name varchar(20) not null,
sypt_id varchar(12),
foreign key(sypt_id) references who_staging.symptom(sypt_id),
primary key(medi_id)
);
create table if not exists who_staging.FollowUp(
F_id varchar(10) not null,
pt_id varchar(15),
sypt_id varchar(12),
medi_id varchar(12),
foreign key(pt_id) references who_staging.PatientDetails(pt_id),
foreign key(sypt_id) references who_staging.symptom(sypt_id),
foreign key(medi_id) references who_staging.Medicine(medi_id),
primary key(F_id)
);
この参照は以下の点で正しいですか?関連する4つのテーブル、患者の詳細、症状、医学およびフォローアップ
- 1人の患者が複数の症状を示すことがあります。
- 1つの症状に対して複数の薬を与えることができます。
- 複数の症状の場合、1つの薬を投与することができます。
- 1人の患者が複数のフォローアップを持つことができます。
- 特定のフォローアップ・ナンバーが選択されている場合、システムは、患者の詳細と、患者がどの症状のために服用しているかを表示する必要があります。
私は大いに
pt_idはあまり熱くありません。なぜauto_inc int idのために撮影しないのですか?とにかくその患者のIDを誰が割り当てているのでしょうか? – Drew