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
    

      

  • 相关阅读:
    14.3.1选择选项
    14.3 选择框表单
    14.2.4HTML5约束API验证
    input标签之外是否一定添加form标签
    14.2.3自动切换焦点
    php设计模式---抽象模式模式
    php设计模式---简单工厂模式
    git基本教程,每天更新
    第5章 卷积神经网络
    第3章 深度学习基础
  • 原文地址:https://www.cnblogs.com/wangzuofei/p/9428692.html
Copyright © 2011-2022 走看看