我有一个名为 Patient 的表,其中有类似的列
ID Disease1 Disease2 Disease3
----------
1 4 3 2
----------
2 2 5
----------
3 6
----------
4 1
这些是我从疾病表中获得的映射值,其中疾病名称的放置方式如下
1 hypertension
2 niddm
3 allergy
4 cough
5 floo
6 vv
etc
现在我想要 sql 查询来选择
ID Disease1 Disease2 Disease3
----------
1 cough allergy niddm
----------
2 niddm floo
----------
3 vv
----------
4 HT
请记住,我的表格映射了 4,5 个表格,我希望原始值代替所有表格的 id。