Hi,
I have a program written in C# with a SQL Server database. In the database there is a table (ProcessData
) with 3 columns: ID
(PK, auto-ID), Start
(DateTime), End
(DateTime).
There are also a lot of threads which will be inserting new rows into the database table (ProcessData
) every few minutes/seconds.
I want to insert at the beginning only the ID and the Start columns, and after few minutes/seconds ACCORDING TO THE ID, add the End column.
How can I do that?
Many thanks,