ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 关于SQL查找问题 多条件 (条件代码有问题)

[复制链接]

TA的精华主题

TA的得分主题

发表于 2019-7-11 11:45 | 显示全部楼层 |阅读模式
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
本帖最后由 小锋子 于 2019-7-12 12:50 编辑

老师们,请教一个问题:关于多条件查找,如果其中为空则不进入查找的条件内;
1.JPG

代码1   这个只能实现时间段内查找
  1. Sub TJ()
  2.   On Error Resume Next '忽略错误值
  3.   
  4. Dim cnn As Object, Sql$, shnm$, arr, i&, j&
  5. Set cnn = CreateObject("Adodb.Connection")


  6. shnm = Sheet7.Name
  7. ks = CDate([L5].Value)
  8. js = CDate([N5].Value)
  9. kh = [L2]
  10. ck = [N2]


  11. cnn.Open "provider=Microsoft.ACE.OLEDB.12.0;Extended Properties='Excel 12.0;';data source=" & ThisWorkbook.FullName

  12. Sql = ""
  13. Sql = "select 单号,日期,货号,产品名称,数量,仓库 from [" & shnm & "$] where 日期 between #" & ks & "# And #" & js & "#"



  14. 'SQL = "select SQL from [" & shnm & "$] where 日期 between #" & ks & "# And #" & js & "#"


  15. [A5:F5000].Clear
  16. [A5].CopyFromRecordset cnn.Execute(Sql)
  17. cnn.Close
  18. Set cnn = Nothing

  19. '宏整理格式
  20.     Columns("A:H").Select
  21.     Range("A5").Activate
  22.     With Selection
  23.         .HorizontalAlignment = xlCenter
  24.         .VerticalAlignment = xlCenter
  25.         .WrapText = False
  26.         .Orientation = 0
  27.         .AddIndent = False
  28.         .IndentLevel = 0
  29.         .ShrinkToFit = False
  30.         .ReadingOrder = xlContext
  31.     End With
  32.     Range("A1:H2").Select
  33.     Columns("A:A").EntireColumn.AutoFit
  34.     Columns("B:B").EntireColumn.AutoFit
  35.     Columns("C:C").EntireColumn.AutoFit
  36.     Columns("D:D").EntireColumn.AutoFit
  37.     Columns("E:E").EntireColumn.AutoFit
  38.     Columns("F:F").EntireColumn.AutoFit
  39.     Columns("G:G").EntireColumn.AutoFit
  40.     Columns("H:H").EntireColumn.AutoFit
  41.     Range("L2:L3").Select
  42. End Sub
复制代码
这里自己加上判断,但只能实现第一条……老师们帮我看一下错了那里?我一条条来测就可以
  1. If IsDate(ks) Or IsDate(js) Or kh > "" Or ck > "" Then
  2. '所有条件齐全查找;
  3.    Sql = "select 单号,日期,货号,产品名称,数量,仓库 from [" & shnm & "$] where 日期 between #" & ks & "# And #" & js & "# and 货号=" & kh & "and 仓库='" & ck & "';"
  4.   
  5.   ElseIf IsDate(ks) Or IsDate(js) Or kh > "" Then
  6. '日期段和货号查找;
  7.    Sql = "select 单号,日期,货号,产品名称,数量,仓库 from [" & shnm & "$] where 日期 between #" & ks & "# And #" & js & "# and 货号=" & kh & "';"
  8.   
  9.   ElseIf IsDate(ks) Or IsDate(js) Or ck > "" Then
  10. '仓库和时间段查找;
  11.    Sql = "select 单号,日期,货号,产品名称,数量,仓库 from [" & shnm & "$] where 日期 between #" & ks & "# And #" & js & "# and 仓库='" & ck & "';"

  12.   ElseIf IsDate(ks) Or IsDate(js) = "" Then
  13. '仓库和货号查询;
  14.    Sql = "select 单号,日期,货号,产品名称,数量,仓库 from [" & shnm & "$] where 货号=" & kh & "and 仓库='" & ck & "';"
  15.   
  16.   ElseIf IsDate(ks) Or IsDate(js) Or kh = "" Then
  17. '所在仓库查询;
  18.    Sql = "select 单号,日期,货号,产品名称,数量,仓库 from [" & shnm & "$] where 仓库='" & ck & "';"
  19.   ElseIf IsDate(ks) Or IsDate(js) Or ck = "" Then
  20. '货号查询;
  21.   Sql = "select 单号,日期,货号,产品名称,数量,仓库 from [" & shnm & "$] where 货号=" & kh & ""

  22.   

  23.   End If
复制代码


提问1.rar (54.33 KB, 下载次数: 31)



TA的精华主题

TA的得分主题

发表于 2019-7-11 14:07 来自手机 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
可以把多字段连成一个字符串查询。
还有,就是根据条件,if 条件 then ....拼接sql语句
SRC_20190711_140503.png

TA的精华主题

TA的得分主题

发表于 2019-7-11 15:24 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
揣摩你的意思大约是这样:
Sub TJ()
  On Error Resume Next '忽略错误值
  Dim cnn As Object, Sql$, shnm$, arr, i&, j&
  ks = CDate([L5].Value)
  js = CDate([N5].Value)
  kh = [L2]
  ck = [N2]
  If IsDate(ks) Or IsDate(js) Or kh = "" Or ck = "" Then
    MsgBox "查询条件不起,补齐后重试。"
    Exit Sub
  End If
  shnm = Sheet7.Name
  Set cnn = CreateObject("Adodb.Connection")
  cnn.Open "provider=Microsoft.ACE.OLEDB.12.0;Extended Properties='Excel 12.0;';data source=" & ThisWorkbook.FullName
  Sql = "select 单号,日期,货号,产品名称,数量,仓库 from [" & shnm & "$] where 日期 between #" & ks & "# And #" & js & "# and 货号=" & kh & "and 仓库='" & ck & "';"


Sheet5.[A5:F5000].Clear
Sheet5.[A5].CopyFromRecordset cnn.Execute(Sql)
cnn.Close
Set cnn = Nothing

Stop
'宏整理格式
    Columns("A:H").Select
    Range("A5").Activate
    With Selection
        .HorizontalAlignment = xlCenter
        .VerticalAlignment = xlCenter
        .WrapText = False
        .Orientation = 0
        .AddIndent = False
        .IndentLevel = 0
        .ShrinkToFit = False
        .ReadingOrder = xlContext
    End With
    Range("A1:H2").Select
    Columns("A:A").EntireColumn.AutoFit
    Columns("B:B").EntireColumn.AutoFit
    Columns("C:C").EntireColumn.AutoFit
    Columns("D:D").EntireColumn.AutoFit
    Columns("E:E").EntireColumn.AutoFit
    Columns("F:F").EntireColumn.AutoFit
    Columns("G:G").EntireColumn.AutoFit
    Columns("H:H").EntireColumn.AutoFit
    Range("L2:L3").Select
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2019-7-12 09:39 | 显示全部楼层
liangmutou01 发表于 2019-7-11 15:24
揣摩你的意思大约是这样:
Sub TJ()
  On Error Resume Next '忽略错误值

谢谢你的回复,大至达到了,我再进行改动一下,因为条件不一定全部齐来操作的,先感谢你的热心回复

TA的精华主题

TA的得分主题

 楼主| 发表于 2019-7-12 09:41 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
zpy2 发表于 2019-7-11 14:07
可以把多字段连成一个字符串查询。
还有,就是根据条件,if 条件 then ....拼接sql语句

感谢你的回复,感觉虽然云里雾不太明白,但if 条件 then ....拼接sql语句 这句话给了我启发,我试试

TA的精华主题

TA的得分主题

 楼主| 发表于 2019-7-12 12:03 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
这里自己加上判断,但只能实现第一条……老师们帮我看一下错了那里?我一条条来测就可以
  1. If IsDate(ks) Or IsDate(js) Or kh > "" Or ck > "" Then
  2. '所有条件齐全查找;
  3.    Sql = "select 单号,日期,货号,产品名称,数量,仓库 from [" & shnm & "$] where 日期 between #" & ks & "# And #" & js & "# and 货号=" & kh & "and 仓库='" & ck & "';"
  4.   
  5.   ElseIf IsDate(ks) Or IsDate(js) Or kh > "" Then
  6. '日期段和货号查找;
  7.    Sql = "select 单号,日期,货号,产品名称,数量,仓库 from [" & shnm & "$] where 日期 between #" & ks & "# And #" & js & "# and 货号=" & kh & "';"
  8.   
  9.   ElseIf IsDate(ks) Or IsDate(js) Or ck > "" Then
  10. '仓库和时间段查找;
  11.    Sql = "select 单号,日期,货号,产品名称,数量,仓库 from [" & shnm & "$] where 日期 between #" & ks & "# And #" & js & "# and 仓库='" & ck & "';"

  12.   ElseIf IsDate(ks) Or IsDate(js) = "" Then
  13. '仓库和货号查询;
  14.    Sql = "select 单号,日期,货号,产品名称,数量,仓库 from [" & shnm & "$] where 货号=" & kh & "and 仓库='" & ck & "';"
  15.   
  16.   ElseIf IsDate(ks) Or IsDate(js) Or kh = "" Then
  17. '所在仓库查询;
  18.    Sql = "select 单号,日期,货号,产品名称,数量,仓库 from [" & shnm & "$] where 仓库='" & ck & "';"
  19.   ElseIf IsDate(ks) Or IsDate(js) Or ck = "" Then
  20. '货号查询;
  21.   Sql = "select 单号,日期,货号,产品名称,数量,仓库 from [" & shnm & "$] where 货号=" & kh & ""

  22.   

  23.   End If
复制代码

TA的精华主题

TA的得分主题

发表于 2023-7-21 17:44 | 显示全部楼层
liangmutou01 发表于 2019-7-11 15:24
揣摩你的意思大约是这样:
Sub TJ()
  On Error Resume Next '忽略错误值

https://club.excelhome.net/thread-1667656-1-1.html
老师帮忙看看,问题出在哪里。如何修改可以达到想要的效果。
在此非常感谢!!!
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-17 04:53 , Processed in 0.044292 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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