- A null is a value that is unavailable, unassigned, unknown/inapplicable.
- It is not the same as zero or a blank space.
SELECT name,job_id, salary, comm FROM dept;
In arithmetic expression:
- Arithmetic expression containing a null value evaluate to null.
SELECT name, 12*salary*comm FROM employee;






No comments:
Post a Comment