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
    

      

  • 相关阅读:
    LeetCode 264. Ugly Number II
    LeetCode 231. Power of Two
    LeetCode 263. Ugly Number
    LeetCode 136. Single Number
    LeetCode 69. Sqrt(x)
    LeetCode 66. Plus One
    LeetCode 70. Climbing Stairs
    LeetCode 628. Maximum Product of Three Numbers
    Leetcode 13. Roman to Integer
    大二暑假周进度报告03
  • 原文地址:https://www.cnblogs.com/wangzuofei/p/9428692.html
Copyright © 2011-2022 走看看