लेफ्ट जॉइन का उपयोग करने का एक विकल्प होगा:
select distinct t.phoneNum
from Transaction_Register t
left join Subscription s
on t.phoneNum = s.phoneNum
where s.phoneNum is null
LIMIT 0 , 1000000;
देखें SQL Fiddle with Demo
लेफ्ट जॉइन का उपयोग करने का एक विकल्प होगा:
select distinct t.phoneNum
from Transaction_Register t
left join Subscription s
on t.phoneNum = s.phoneNum
where s.phoneNum is null
LIMIT 0 , 1000000;
देखें SQL Fiddle with Demo