Insert Null into a date database field via database execute query

Hi Ritesh,

please find below example:-
“DECLARE @test_value int
EXEC @test_value = [dbo].[Tasktest]
@testId,
NULL,
NULL,
NULL,
NULL,
NULL,
@ID OUTPUT”

you need to directly pass “NULL” at the column position.
no need to specify the column name.

let me know if it clarifies.