G
Guest
I'm trying to get the number of identical values from 2 tables. The problem
is the query takes a really long time to run. Is there a way to do this
faster? This is what I do now:
select t1.f1 from t1 where t1.f1 IN (Select distinct t2.f2 from t2)
Thanks!
is the query takes a really long time to run. Is there a way to do this
faster? This is what I do now:
select t1.f1 from t1 where t1.f1 IN (Select distinct t2.f2 from t2)
Thanks!