ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
楼主: office2008

[讨论][分享]SQL接龙(figfig,烟雨,ldy,sgrshh29等完成)

[复制链接]

TA的精华主题

TA的得分主题

发表于 2008-9-2 15:50 | 显示全部楼层
本帖已被收录到知识树中,索引项:SQL应用
QUOTE:
以下是引用office2008在2008-9-2 15:34:52的发言:
移动号码2业务12008-05-04失败标记2
移动号码2业务12008-05-04失败标记1
移动号码2业务12008-05-04失败标记1
移动号码2业务12008-05-05失败标记2
移动号码2业务12008-05-06失败标记2
移动号码2业务12008-05-06失败标记2

移动号码2业务12008-05-04失败标记1
移动号码2业务12008-05-04失败标记2
移动号码2业务12008-05-05失败标记2
移动号码2业务12008-05-06

失败标记2

少2条记录,不过做成这个样子,那是狂人级别了,谢谢

Sub fig()
 With Worksheets("连续3天失败标记")
   Set CNN = CreateObject("adodb.connection")
    CNN.Open "Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties='Excel 8.0;hdr=yes;';Data Source=" & ThisWorkbook.FullName
       .Range("f2:i1000").ClearContents
       r = .Range("a65536").End(xlUp).Row
       Sql = "select a.num,a.operation,a.dt,a.errtype FROM [连续3天失败标记$a1:d50] a,[连续3天失败标记$a1:d50] b,[连续3天失败标记$a1:d50] c  where a.num=b.num and a.num=c.num and b.num=c.num and a.operation=b.operation and a.operation=c.operation and b.operation=c.operation and day(b.dt)-day(a.dt)=1 and day(c.dt)-day(b.dt)=1 and day(c.dt)-day(a.dt)=2"
     Sql = Sql & " union (select b.num,b.operation,b.dt,b.errtype FROM [连续3天失败标记$a1:d50] a,[连续3天失败标记$a1:d50] b,[连续3天失败标记$a1:d50] c  where a.num=b.num and a.num=c.num and b.num=c.num and a.operation=b.operation and a.operation=c.operation and b.operation=c.operation and day(b.dt)-day(a.dt)=1 and day(c.dt)-day(b.dt)=1 and day(c.dt)-day(a.dt)=2)"
      Sql = Sql & " union (select c.num,c.operation,c.dt,c.errtype FROM [连续3天失败标记$a1:d50] a,[连续3天失败标记$a1:d50] b,[连续3天失败标记$a1:d50] c  where a.num=b.num and a.num=c.num and b.num=c.num and a.operation=b.operation and a.operation=c.operation and b.operation=c.operation and day(b.dt)-day(a.dt)=1 and day(c.dt)-day(b.dt)=1 and day(c.dt)-day(a.dt)=2)"
     Sql = " select distinct num & operation & dt & errtype  from (" & Sql & ") where len(num)>0"
   Sql = " select num,operation,dt,errtype from [连续3天失败标记$a1:d50]  where num & operation & dt & errtype in ( " & Sql & ")"
   .Range("f2").CopyFromRecordset CNN.Execute(Sql)
End With
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2008-9-2 16:43 | 显示全部楼层

虽然你以后肯定会想提高速度的,但目的是达到了,也就是说成功了,一个字"牛"

 

[em17][em17][em17]

TA的精华主题

TA的得分主题

发表于 2008-9-2 16:50 | 显示全部楼层
QUOTE:
以下是引用office2008在2008-9-2 16:42:30的发言:

虽然你以后肯定会想提高速度的,但目的是达到了,也就是说成功了,一个字"牛"

 

[em17][em17][em17]

下面代码已经优化了,速度应该没问题了,呵呵

Sub fig()
 With Worksheets("连续3天失败标记")
   Set CNN = CreateObject("adodb.connection")
    CNN.Open "Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties='Excel 8.0;hdr=yes;';Data Source=" & ThisWorkbook.FullName
       .Range("f2:i1000").ClearContents
       r = .Range("a65536").End(xlUp).Row
       Sql = "select a.num,a.operation,a.dt,a.errtype FROM [连续3天失败标记$a1:d888] a,[连续3天失败标记$a1:d888] b,[连续3天失败标记$a1:d888] c  where a.num=b.num and a.num=c.num and b.num=c.num and a.operation=b.operation and a.operation=c.operation and b.operation=c.operation and day(b.dt)-day(a.dt)=1 and day(c.dt)-day(b.dt)=1 and day(c.dt)-day(a.dt)=2"
     Sql = Sql & " union (select b.num,b.operation,b.dt,b.errtype FROM [连续3天失败标记$a1:d888] a,[连续3天失败标记$a1:d888] b,[连续3天失败标记$a1:d888] c  where a.num=b.num and a.num=c.num and b.num=c.num and a.operation=b.operation and a.operation=c.operation and b.operation=c.operation and day(b.dt)-day(a.dt)=1 and day(c.dt)-day(b.dt)=1 and day(c.dt)-day(a.dt)=2)"
      Sql = Sql & " union (select c.num,c.operation,c.dt,c.errtype FROM [连续3天失败标记$a1:d888] a,[连续3天失败标记$a1:d888] b,[连续3天失败标记$a1:d888] c  where a.num=b.num and a.num=c.num and b.num=c.num and a.operation=b.operation and a.operation=c.operation and b.operation=c.operation and day(b.dt)-day(a.dt)=1 and day(c.dt)-day(b.dt)=1 and day(c.dt)-day(a.dt)=2)"
     Sql = " select distinct num ,operation , dt , errtype  from (" & Sql & ") where len(num)>0"
   Sql = " select aa.num,aa.operation,aa.dt,aa.errtype from [连续3天失败标记$a1:d888] aa,(" & Sql & ") bb  where aa.num=bb.num and aa.operation=bb.operation and aa.dt=bb.dt and aa.errtype=bb.errtype"
   .Range("f2").CopyFromRecordset CNN.Execute(Sql)
End With
End Sub

TA的精华主题

TA的得分主题

发表于 2008-9-2 16:53 | 显示全部楼层
刚才最后一句太耗时间,所以范围取小一点到d50,现在应该没问题了,又改到d888了

TA的精华主题

TA的得分主题

 楼主| 发表于 2008-9-2 17:07 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册

刚才最后一句太耗时间,所以范围取小一点到d50,现在应该没问题了,又改到d888了

范围为什么改大了反而快?

TA的精华主题

TA的得分主题

发表于 2008-9-2 17:13 | 显示全部楼层
QUOTE:
以下是引用office2008在2008-9-2 17:06:34的发言:

刚才最后一句太耗时间,所以范围取小一点到d50,现在应该没问题了,又改到d888了

范围为什么改大了反而快?

不是范围的关系,最后一句原来用了4个连续嵌套,所以卡住了,现在用交叉表查询,范围扩大到d8888也没问题了

[此贴子已经被作者于2008-9-2 17:23:29编辑过]

TA的精华主题

TA的得分主题

 楼主| 发表于 2008-9-2 17:24 | 显示全部楼层

求助- sql中未知(空值)的解决办法(已解决)

如果重复只取一条(不考虑errtype是不是不同),留最后一条,谢谢!
[此贴子已经被作者于2008-9-2 17:59:14编辑过]

TA的精华主题

TA的得分主题

发表于 2008-9-2 17:30 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
QUOTE:
以下是引用office2008在2008-9-2 17:24:01的发言:
如果重复只取一条,留最后一条,谢谢!

Sql = " select distinct aa.num,aa.operation,aa.dt,aa.errtype from [连续3天失败标记$a1:d888] aa,(" & Sql & ") bb  where aa.num=bb.num and aa.operation=bb.operation and aa.dt=bb.dt and aa.errtype=bb.errtype"

TA的精华主题

TA的得分主题

发表于 2008-9-2 17:51 | 显示全部楼层
QUOTE:
以下是引用office2008在2008-9-2 15:10:09的发言:

这样的讨论下去很好啊,增长知识和思路,谢谢各位一起讨论。

下面插一个小问题

我看见网上很多 select isnull(字段,null).......

在EXCEL试了 不行啊。请教大家,谢谢

Sql = "select isnull(num) as aa from [连续3天失败标记$a1:d888]"

TA的精华主题

TA的得分主题

 楼主| 发表于 2008-9-2 18:05 | 显示全部楼层

求助- sql中未知(空值)的解决办法(已解决)

假如为空,则为空,否则为字段本身? AA,BB两个字段

通过 iif(len(aa)>0,aa,bb) 可以 

   iif(isnull(AA),bb,aa) 可以

    iif(AA is null,bb,aa) 这样也可以

为何和网上 一样 isnull(aa,bb)不可以?

[此贴子已经被作者于2008-9-2 18:13:15编辑过]
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-12-12 07:46 , Processed in 0.054728 second(s), 5 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表