我有两张table,例如:
table_1 (id_t1,id_t2,...);
table_2 (id_t2,...);
我知道表\1的id \t1,我需要通过连接表2的id \t2值从表\1获取所有行。我能在mariadb做一个查询吗?
现在我可以做到:
select id_t2 from table_1;
select *
from table_1 left join table_2 on table_1.id_t2=table_2.id_t2
where id_t2=the result of past query;
1条答案
按热度按时间g52tjvyc1#
试着用一个
IN
陈述