我的数组包含一些元素:
(
"element 1",
"element 2",
"element 3"
)
我需要查询数据库,并获取存储在数据库中上述数组中的每个元素:
select * from table1 where type=?
我得到了一个for循环的想法,用于数组,选择查询将根据数组的大小重复,这不是那么有用。
任何想法,谢谢提前:)
使用IN
运算符:
select * from table1 where type in ('element1', 'element2');
你的意思是像
select * from table1 where type in ('type1', 'type2', 'type3')
?