如何把sql查询出来的结果当做另一个sql的条件查询

2025-05-10 15:45:19
推荐回答(1个)
回答1:

select date2 
from table2 
where id in 
(select id--,name,date,contact 
from table1);