私はそのように2つのテーブルを持っています:
ID Name indicator_1 indicator_2
1 text 1 1
2 text 1 1
3 text 1 1
4 text 2 1
5 text 2 1
6 text 2 2
7 text 2 2
8 text 3 2
FieldName Value Description
indicator_1 1 good
indicator_1 2 medium
indicator_1 3 bad
indicator_2 1 yes
indicator_2 2 no
2つのテーブルを結合して次の場所に到達する方法はありますか?
ID Name indicator_1 indicator_2
1 text good yes
2 text good yes
3 text good yes
4 text medium yes
5 text medium yes
6 text medium no
7 text medium no
8 text bad no
これは単なるサンプルであり、実際のテーブルには約70のインジケーターがあります...ありがとうございます