Return boolean value from oracle function(从 oracle 函数返回布尔值)
问题描述
试图从函数返回值
create or replace function compairenumber(num1 in number,num2 in number)
return boolean is
begin
if num1 < num2 then
return true;
else
return false;
end if;
end;
当我提出问题时从对偶中选择compairenumber(5,10)它不返回真或假.
when i'm giving query select compairenumber(5,10) from dual its not returning true or false.
推荐答案
布尔值只能在其他PL/SQL代码中使用,不能在Oracle SQL中使用.如果你想要一个函数,它的返回值在 select ... from dual 中可用,那么你需要定义函数以返回 varchar2 和返回值 'true' 和 'false' 分别(或 'T' 和 'F',或返回数字,带有值1 和 0).
Boolean values can only be used in other PL/SQL code, not in Oracle SQL. If you want a function whose return value is available in a select ... from dual then you will need to define the function to return varchar2 with the return values 'true' and 'false' respectively (or 'T' and 'F', or return number, with the values 1 and 0).
令人遗憾的是,Oracle SQL 不支持布尔数据类型(尽管编程语言 PL/SQL 支持).
As sad as this is, Oracle SQL does not support the Boolean data type (although the programming language PL/SQL does).
这篇关于从 oracle 函数返回布尔值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 oracle 函数返回布尔值
- SQL 临时表问题 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
