What is the datatype of null in oracle?
NULL is a marker that represents missing, unknown, or inapplicable data. Null is untyped in SQL, meaning that it is not designated as a NUMBER, CHAR, or any other specific data type. Do not use NULL to represent a value of zero, because they are not equivalent.
So it does not have a datatype as it is untyped?