我有一个包含 where 选择的表。例如ExpressionTable
:
ID WhereCase
------------------
1 = 4
2 in(2,3)
3 = 3
4 in(4,5,6)
现在我需要使用这个 WhereCase 从另一个表中进行选择。
Select * from tablexy join ExpressionTable as et on tablexy.ID = et.ID
Where Country (this (WhereCase) from the ExpressionTable)
当我写where Country = et.WhereCase
不工作...
最好的方法是什么?