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.
我有一个表 MYTABLE,其中有一列 STRINGCOL 字符串常量。我还有一个向量,我们称之为向量,在 STRINGCOL 中包含这些常量的子集。
我想写这样一个查询:
select * from MYTABLE where STRINGCOL in theVector
这是可能的,还是我必须手动“取消角色”向量?
这是不可能的——很遗憾。展开集合并构建查询字符串是要走的路。