我要做的是执行一个循环,遍历表中的每一列并将变量@agent 设置为该列的agentID。
这是我到目前为止的代码:
Declare @index int = 1
Declare @agentCount = Max(rowID)
Declare @agentID int
While(@i =< @agentCount)
Begin
If(@index = rowID)
Begin
--Set @agentID (to current row's agentID)
Exec mergeagentLogRecords @agentID, @startDate, @endDate
End
Set @index = @index + 1
End
我希望我能很好地解释自己:P 感谢您的关注!