我有一个临时表#temp321
,其中包含如下信息:
id|sourceFields|DestinationFields
---------------------------------
1 |c2 |c102
-------------------------
2 | c4 |c104
-----------------------
我也有一个where子句到一个变量中@where_value
,比如:
c1='v11' and c2='v22' and c3='v33' and c4='v44'
现在我只需要将目的地字段信息放入 @where_value 。
@where_value 的预期结果是:c102='v22' and c104='v44'
我怎么能得到它。请帮忙。