zoukankan      html  css  js  c++  java
  • 新院址运行统计

    ---上周电脑端登陆次数统计
      select a.ExTitle as 'user',COUNT(*) as 'count' from [BIMPM_Base].[dbo].[ApplicationLog] as a join [BIMPM_Base].[dbo].[ProjectAttendUser] as b 
      on a.ExTitle = b.UserName 
      where a.OperateCategory = 1 and ExMessage = '' and b.ProjectRowGuid = '8567b6bc-27e9-4128-b5d9-1b5f20bbcf78' and 
      a.OperateDate > '2018-7-29' and a.OperateDate< '2018-8-6'
      group by a.ExTitle
      
      ---上周手机端登陆次数统计
      select a.ExTitle as 'user',COUNT(*) as 'count' from [BIMPM_Base].[dbo].[ApplicationLog] as a join [BIMPM_Base].[dbo].[ProjectAttendUser] as b 
      on a.ExTitle = b.UserName 
      where a.OperateCategory = 1 and ExMessage = '手机端快速登陆' and b.ProjectRowGuid = '8567b6bc-27e9-4128-b5d9-1b5f20bbcf78' and 
      a.OperateDate > '2018-7-29' and a.OperateDate< '2018-8-6'
      group by a.ExTitle
      
      ---上周问题数量统计
      SELECT a.CreateUserName as 'user',COUNT(*) as 'count'
      FROM [BIMPM_RoadBridge].[dbo].[ProjectProblem] as a 
      where a.ProjectRowGuid = '8567b6bc-27e9-4128-b5d9-1b5f20bbcf78' and a.CreationDate > '2018-7-29' and a.CreationDate< '2018-8-6'
      group by a.CreateUserName
    

      

  • 相关阅读:
    硬件设计问题——持续更新
    PCB设计资源整理
    PCB层叠设计和电源分割
    PCB设计技巧
    铜厚电流、Layout 3W原则 20H原则 五五原则
    final关键字
    面向对象——继承与组合
    面向对象——继承
    this总结
    static总结
  • 原文地址:https://www.cnblogs.com/wangzuofei/p/9428692.html
Copyright © 2011-2022 走看看