Hello.
Help. I cannot figaure out what is wrong with this SQL.
I am trying to display an average cycle time per site.
I end up getting the same result for all sites.
Thanks in advance.
-Cassie
select SITE, AVG(CycleTime) as AVG_CT
from
(select SITE, ROUND(DEC_DATE-VIS_DATE,2) as CycleTime...