hi everyone
i'm doing a work on optimizing db-queries.
my test-db has the following tables:
create table r (a int, b int);
create table s (a int, d int, e int),
create table t (d int, f int);
these are filled with 1 million pseudorandom numbers.
my query is as follows:
select *
from r,s,t...