3 lines
71 B
Text
3 lines
71 B
Text
create or replace function evenp(i) as (
|
|
i = trunc(i) and i%2 = 0
|
|
);
|
create or replace function evenp(i) as (
|
|
i = trunc(i) and i%2 = 0
|
|
);
|