尝试做一些非常简单的事情。使用 If/Then,有没有办法根据变量的值运行单独的 Select 语句?下面代码中的函数 GetTotalActiveUnits() 返回一个整数。
set @RetVal = GetTotalActiveUnits(CustomerCode);
if @RetVal = 0 then
Select * from tblREF_UnitInfo;
else
select * from tblREF_State;
end if