Viewing 5 posts - 1 through 6 (of 6 total)
Windows 7 which has .net 3.5 and is turned on and W7 comes with Powershell 2.0. Also have .net 4.5 installed. Looked at the logs no errors reported.
October 28, 2013 at 8:08 pm
Great working examples, thanks for the education!
September 4, 2013 at 2:50 pm
Amazing how fast this query works...Thank you!
August 27, 2013 at 9:54 am
Here's what I've come up with:
select distinct [800number], (
select top 1 CompanyName
from calldata
where calldata.[800number]=cd.[800number]
group by [800number], CompanyName
order by [800number], count(*) desc) as companyname
from calldata cd
My issue is this solution...
August 26, 2013 at 10:17 pm
Thanks for the reply, I only want the results to show the 800 number with the greatest row count.
August 26, 2013 at 9:35 pm
Viewing 5 posts - 1 through 6 (of 6 total)