gpt4 book ai didi

sql - 在 Where 子句中使用表

转载 作者:行者123 更新时间:2023-11-28 19:18:37 26 4
gpt4 key购买 nike

我的数组包含一些元素:

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

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

 select * from table1 where type=?

我想到了一个for循环,for数组,select查询会根据数组的大小重复,这个用处不大。

任何想法,提前谢谢 :)

最佳答案

使用 IN operator :

select * from table1 where type in ('element1', 'element2');

关于sql - 在 Where 子句中使用表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10673352/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com