I have had the same problem with null and SQL overrides: I find if I use an nvl statement, it works. So, for example:
Update tbl_customers
set last_name = :tu.last_name
where
nvl(customer_id, 0) = nvl(:tu.customer_id,0)
Good luck!
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.