[Solved] How to modify stored procedure to give null instead of 0
In you sql code add this line CASE WHEN Approach = 0 THEN NULL END AS Approach so in your stored procedure when Approach will come as 0 then it will be replaced with NULL solved How to modify stored procedure to give null instead of 0