Cannot insert the value NULL into column 'TaskID', table 'TEAM.dbo.Task'; column does not allow nulls. INSERT fails. The statement has been terminated.
Asked
Active
Viewed 689 times
1 Answers
0
This is because you are trying to insert the NULL value in the column 'TaskID' which is not nullable, i.e you can't insert NULL value into 'TaskID' column.

Karan Kiri
- 316
- 2
- 12