I've got an SQL (edit: SQL Server 2005) table populated by on of our applications, but one of the fields (task status) isn't populating during this process.
I can extract this field manually and I want to insert this in to the table.
The value of the field obviously depends on the task, so I can't just do an insert where as there are thousands of rows I need to update.
How could I do this without having to run a query for each task?
I can extract this field manually and I want to insert this in to the table.
The value of the field obviously depends on the task, so I can't just do an insert where as there are thousands of rows I need to update.
How could I do this without having to run a query for each task?