oracle sql 判断语句 if
时间: 2023-07-12 16:40:11 浏览: 114
Oracle sql 语句集锦
在Oracle SQL中,可以使用IF-THEN语句进行条件判断。基本语法如下:
```
IF condition THEN
statement1;
ELSE
statement2;
END IF;
```
其中,condition是要判断的条件,如果为TRUE,则执行statement1,否则执行statement2。例如,以下SQL语句可以判断一个数是否大于10:
```
DECLARE
num NUMBER := 12;
BEGIN
IF num > 10 THEN
DBMS_OUTPUT.PUT_LINE('The number is greater than 10.');
ELSE
DBMS_OUTPUT.PUT_LINE('The number is less than or equal to 10.');
END IF;
END;
```
这段代码中,如果num大于10,则会输出"The number is greater than 10.",否则输出"The number is less than or equal to 10."。
阅读全文