我有一个数据库demo
,其中有一个名为country
的表。
表包含两列countryID
和countryName
我想在列countryName
中搜索多个值以获取countryID
执行此操作的一种方法是使用AND
运算符,但在这种情况下,所有情况下值的数量必须相同。
即
select countryID from country where countryName = "USA" AND countryName = "INDIA"
所以,我正在寻找云帮助我在countryName
列中搜索 N 数量值的解决方案,以获得countryID
答案 0 :(得分:0)
SELECT countryID FROM country WHERE countryName IN ("value1", "value2", "value3")
尽可能多的价值观。