Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用亚马逊的 SimpleDB。我的问题很简单。我有一个数组说[1,2,3,4]。我需要以某种方式查询我的域,以便如果特定列的值在此数组中,则应选择该行。
[1,2,3,4]
这是可能的还是我必须编写多个查询并运行一个循环?
使用 IN 函数
例如
SELECT * FROM [Table] WHERE [COLUMN_NAME] IN ('1','2','3','4')