Hi,
I have a stored procedure that updates POrder. It only update if column(QTY) is not NULL(updates if 0 or any number).
How do i update even if column is NULL
Here my Code:
UPDATE POrder set Qty = Qty+@QTY
WHERE POID=@POID AND ItemID=@ItemID
Thanks in advance