我有 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 张桌子。
请帮忙。