下面是我的代码。
一个变量没有值。另一个变量具有值。在下面的代码中,我想打印出变量是
即使var1
没有任何值也是如此。我该怎么办?
CREATE OR REPLACE PACKAGE BODY mypackagebody IS
PROCEDURE comparenull() IS
l_var1 mytable.mycolumn1%TYPE;
l_var2 mytable.mycolumn2%TYPE;
BEGIN
BEGIN
SELECT var1
,var2
INTO l_var1
,l_var2
FROM mytable;
EXCEPTION
WHEN no_data_found THEN
var1 := NULL;
var2 := NULL;
END;
/* At this point var1 is NOT having any value and var2 is having a value.*/
/* The below if condition is returing false. But, I wanted to go inside the if condition and print that the var values are not same*/
IF var1 <> var2
THEN
dbms_ouput.put_line('var1 and var2 are not same');
END IF;
END comparenull;
END mypackagebody;
答案 0 :(得分:4)
我认为您想进行NULL
安全的比较。在Oracle中,您可以使用多个条件:
IF var1 <> var2 OR
(var1 is null and var2 is not null) OR
(var1 is not null and var2 is null)
答案 1 :(得分:2)
处理此问题的最成功方法可能是使用NVL
if NVL(var1, 'NULL') <> NVL(var2, 'NULL')
NVL将对变量求值,如果它为null,则在比较中使用字符串,而该字符串可以是您想要的任何字符串,而不必是文字字符串NULL,我只是觉得这很有用。