Sooooooo in my peabrain rationale that seemed like this was going to work but it didn’tselect MIN(s.importdate) as Importdate, i.STATE,COUNT(*) as Recordsfrom Nationwide.dbo.NAT91410 as i left join CCISUP.dbo.suppression s on s.tl1 = i.phone left join CCISUP.dbo.purge p on p.tl1 = i.phone left join CCISUP.dbo.NS ns on ns.tl1 = i.PHONE where s.tl1 is NULL and ns.tl1 is null and p.tl1 is NULL and i.PHONE is not nullgroup by i.STATE order by i.STATE
I get this for results.Importdate STATE RecordsNULL AL 1NULL AR 37303NULL GA 78124NULL KY 154343NULL MD 676850NULL MS 87146NULL NC 814292NULL TN 1NULL VA 862185I did however get this to work properly but now its just putting the 2 together lolselect MIN(s.importdate) as Importdate, s.statefrom ccisup.dbo.suppression as sgroup by s.STATE order by s.STATE
Any help or advice would be greatly appreciated.Yep.. Point and Click dont work here..