以下のような3つのテーブルがあります
table_1
securityno name price
1 a11 12.12
2 z11 44.4
table_2
name identifier Mainprice
a11_bond NO34 11
z22_bond NO98 22
table_3
securityno name identifier
1 a11 NO34
2 z11 NO98
出力データと列
を表示したいだけでtable_1
、価格が正しいかどうかを確認したいtable_2
table_1
Mainprice
table_2
securityno name price Mainprice
1 a11 12.12 11
2 z11 44.4 22
私はのようにしようとしていた
select * from table_1 left join table_2 on table_3 はどうですか?
3 つのテーブルを使用できませんでした。
助けてください。