Hi @ali zubair
Here is a really nice answer to your question:
What's the difference between " = null" and " IS NULL"?
https://stackoverflow.com/questions/2749044/whats-the-difference-between-null-and-is-null
In a WHERE clause, column=null will never be true, it is not valid to use null this way, you need to say column IS NULL or column IS NOT NULL. This speaks to the special nature of NULL, it is not a value to check for equality of, it is an unknown value, so you need to use the IS or IS NOT syntax.
You may assign something the NULL value using the = equal. For example: UPDATE TableX SET Column=NULL...
(Answered by "anonymous user")
-----------------------------
If this is helpful please accept answer.