私がやろうとしているのは、テーブルの各列を通過し、変数 @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 見てくれてありがとう!