oracle函数返回boolean值createfunction test (x int)return booleanasbeginreturn (x10)end这样可以返
oracle函数返回boolean值
create function test (x int)
return boolean
as
begin
return (x>10);
end;
这样可以返回true 吗?
[解决办法]
在pl/sql里也不能select 布尔型 from 吧
布尔型不是有效的字段类型,尽管pl/sql里有这个数据类型
