SQL Server 2000
Windows NT 4.0
Table 1
NumberOfItems (int)
Table 2
ItemProcessed (char)
Date (datetime)
I need a stored procedure that will add the count from ItemProcessed for the current date in Table2 to the NumberOfItem in Table1. If there is already a value in Table1, the new count should be added to it.
Windows NT 4.0
Table 1
NumberOfItems (int)
Table 2
ItemProcessed (char)
Date (datetime)
I need a stored procedure that will add the count from ItemProcessed for the current date in Table2 to the NumberOfItem in Table1. If there is already a value in Table1, the new count should be added to it.