代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
MSSQL
】
最大连续出现的次数
作者:
zhaowenzhong
/ 发布于
2013/3/26
/
762
with CET_Table as ( select 'A' name,1 as [month],0 as value union all select 'A',2,1 union all select 'A',3,0 union all select 'A',4,0 union all select 'A',5,1 union all select 'A',6,0 union all select 'A',7,0 union all select 'A',8,0 union all select 'A',9,0 union all select 'A',10,0 union all select 'A',11,1 union all select 'A',12,1 union all select 'B',1,1 union all select 'B',2,0 union all select 'B',3,0 union all select 'B',4,1 union all select 'B',5,1 union all select 'B',6,1 union all select 'B',7,1 union all select 'B',8,1 union all select 'B',9,0 union all select 'B',10,0 union all select 'B',11,0 union all select 'B',12,1 ) --select * into ta from CET_Table ---根据CET快速创建一个表 ,A as( select * ,number = (select COUNT(1) from CET_Table B where B.name = A.name and B.value = A.value and B.month<=A.month and B.month>=(select isnull(max(c.month),1) from CET_Table C where C.name = A.name and C.value <> A.value and C.month<=A.month)) from CET_Table A) ,B as( select name,max(number)'0',0 as'1' from a where value=0 group by name union all select name,0 as '-',max(number) as'-' from a where value=1 group by name ) select name ,SUM([0])max_rest_time,SUM([1])max_working_time from b group by name ---明细 --select * ,number = (select COUNT(1) from CET_Table B where B.name = A.name and B.value = A.value and B.month<=A.month --and B.month>=(select isnull(max(c.month),1) from CET_Table C where C.name = A.name and C.value <> A.value and C.month<=A.month)) --from CET_Table A
试试其它关键字
连续出现
同语言下
.
SQL查询 多列合并成一行用逗号隔开
.
查看存储过程修改时间,最近执行时间
.
设置手动批量删除数据库相关进程
.
获取某个表中特定字段的所有字符串形式
.
SQL 如何去除重复的字符串
.
怎么去掉一个字段中的重复数据
.
String 去除空格 回车 换行 水平制表符
.
SQL查询和替换含有回车,空格,TAB
.
SQL SERVER 查询每日新增用户数量、次留数量
.
判断两个字符串是否存在相同的内容
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
zhaowenzhong
贡献的其它代码
(
7
)
.
多行变一行
.
最大连续出现的次数
.
修复 数据库或表或索引 逻辑错误提示 问题
.
批量执行SQL 语句
.
配置权限(存储过程)
.
批量修改DB中字段类型
.
定位 占用CPU最多 SQL
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3