0

我的数组包含一些元素:

(
    "element 1",
    "element 2",
    "element 3"
)

我需要查询数据库,并获取存储在数据库中上述数组中的每个元素:

 select * from table1 where type=?

我得到了一个for循环的想法,用于数组,选择查询将根据数组的大小重复,这不是那么有用。

任何想法,谢谢提前:)

4

2 回答 2

2

使用IN运算符

select * from table1 where type in ('element1', 'element2');
于 2012-05-20T12:26:21.960 回答
2

你的意思是像

    select * from table1 where type in ('type1', 'type2', 'type3')

?

于 2012-05-20T12:28:31.100 回答