[Solved] How to modify stored procedure to give null instead of 0
[ad_1] 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 [ad_2] solved How to modify stored procedure to give null instead of 0