我在从某些表中调用变量时遇到问题
例如,我有一个变量 ID , Text1 和 Text2
我想创建一个函数来分别调用text1和text2,然后使用union组合它们
类似:
select * form fn_callvariable([Text1])
union
select * form fn_callvariable([Text2])
关于功能应该如何的任何建议?
答案 0 :(得分:0)
select dbo.fn_callvariable([Text1]) from SomeTable
union
select dbo.fn_callvariable([Text2]) from SomeTable