CREATE OR REPLACE PROCEDURE example AS
init NUMBER;
result NUMBER;
BEGIN
init := 25;
result := init + NULL;
dbms_output.put_line('Result = '|| result);
END;
Suatu operasi aritmetika pada varibel not null dengan varibel null, hasilnya null.
Apa yang kita dapatkan jika kita menjalankan query dibawah ini dan field
column1
pada tabel my_table
memiliki data NULL?
SELECT * FROM my_table WHERE column1 <> 0;
Kita tidak mendapatkan record yang
column1
berisi NULL.
Karena saya bukan DBA atau database programmer, sempat juga membuat kesalahan . Jadi hati-hati dengan NULL. Baca Oracle "PL/SQL User's Guide and Reference" bagian Expressions and Comparisons, Handling Nulls:
- comparisons involving nulls always yield NULL
- applying the logical operator NOT to a null yields NULL
- in conditional control statements, if the condition yields NULL, its associated sequence of statements is not executed
No comments:
Post a Comment