select f1 from table1的结果集做为查询条件循环查询。
如:
set @a =select f1 from table1
foreach (@a)
{
select * from table2
where f2=@a
}
sql 语句是对数据库进行操作的一种语言。 结构化查询语言(Structured Query Language)简称SQL,结构化查询语言是一种数据库查询和程序设计语言,用于存取数据以及查询、更新和管理关系数据库系统。
list集合中得到的只如何和数据库字段相对应,这是个问题。所以楼主,你应该采用HashMap集合,在得到集合时候写入对应字段的对应值。再构造sql语句。
遍历list,得到list里的所有值,比如1,2,3然后用
select * from table where id in ( 1, 2, 3 )
select t1.* from table1 t1 where t1.id in (select t2.id from table2 t2)
要看你的list有多少什么样的字段,还有条件是什么样的?
还有你的编程环境是什么?