--PV:
select page as 地址,convert(char(10),createtime,120) as 时间,count(*) as 访问量
from dbo.WebAppLog
where convert(char(10),createtime,120)>='2010-06-01'  and  Page='http://app.pingco.cn/NewCall/Call.mvc/index'
group by page, convert(char(10),createtime,120)
order by convert(char(10),createtime,120)

--UV:
select max(page) as 地址, convert(char(10),createtime,120) as 时间,count(distinct(mobile)) as 人数
from dbo.WebAppLog
where convert(char(10),createtime,120)>='2010-06-01' and page = 'http://app.pingco.cn/NewCall/Call.mvc/index'
group by convert(char(10),createtime,120)
order by convert(char(10),createtime,120)

相关文章:

  • 2022-02-09
  • 2022-02-16
  • 2021-11-10
  • 2022-12-23
  • 2021-12-22
  • 2021-05-23
  • 2022-12-23
  • 2021-09-30
猜你喜欢
  • 2022-12-23
  • 2021-10-25
  • 2021-12-06
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-18
相关资源
相似解决方案