我有两个表格如图所示
表1:
| ldt | swpn | nomenclature | planned | combined |
表2:
| lmt | name | combination |
我必须实现:
检查“合并”列中是否存在“组合”列中的值。
如果存在,则打印出相应的| lmt | name | combination |
答案 0 :(得分:0)
使用INNER JOIN,用于从JOIN的LEFT和RIGHT两个表中获取结果
SELECT t2.lmt, t2.name, t2.combination
FROM
t1
INNER JOIN t2 ON t1.combined=t2.combination
答案 1 :(得分:0)
SELECT Table2.lmt, Table2.name, Table2.combination FROM Table1, Table2 WHERE Table2.combination=Table1.combined