Hi,
We are just discussing "you can do almost everything
using a view". Of course the view might become a large
one, but it should be possible to do it with a view.
Any ideas on how to write a view that returns the
prime numbers within a table of numbers?
e.g.
create table NUMBERS (number integer);
create view PRIMES (number) as ???;
We are just discussing "you can do almost everything
using a view". Of course the view might become a large
one, but it should be possible to do it with a view.
Any ideas on how to write a view that returns the
prime numbers within a table of numbers?
e.g.
create table NUMBERS (number integer);
create view PRIMES (number) as ???;
Comment