0

Cannot insert the value NULL into column 'TaskID', table 'TEAM.dbo.Task'; column does not allow nulls. INSERT fails. The statement has been terminated.

Okelz
  • 11
  • You cannot just copy-paste an error and expect people to help you out, please check out ["How do I ask a good question?"](https://stackoverflow.com/help/how-to-ask) and repost your question. – Nico Griffioen Oct 10 '19 at 11:28

1 Answers1

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