6 lines
111 B
Text
6 lines
111 B
Text
create or replace function triples(n) as table (
|
|
from xyz(n)
|
|
where x*x + y*y = z*z
|
|
);
|
|
|
|
from triples(10);
|