请问一下用vb怎么多条件查询access数据库
我用的是adodc和datagrid控件,还有combo1,combo2,combo3三个控件,分别查询教材,单元和课时三个字段,这三个字段可以同时查询,也可以查询其中的...
我用的是adodc和datagrid控件,还有combo1,combo2,combo3三个控件,分别查询教材,单元和课时三个字段,这三个字段可以同时查询,也可以查询其中的一个或两个,我要的是精确查询,请高手给个代码好吗?
本人愚钝,用下面代码:
wherestr = ""
If Combo1.Text <> "" Then
wherestr = " and 编号='" & Combo1.Text & "'"
End If
在查询"编号"字段时出现"标准表达式数据类型不匹配"提示.请再具体指导一下好吗? 展开
本人愚钝,用下面代码:
wherestr = ""
If Combo1.Text <> "" Then
wherestr = " and 编号='" & Combo1.Text & "'"
End If
在查询"编号"字段时出现"标准表达式数据类型不匹配"提示.请再具体指导一下好吗? 展开
3个回答
展开全部
wherestr=""
if combo1.text<>"" then
wherestr=" and 教材='"&combo1.text &"'"
end if
if combo2.text<>"" then
wherestr=" and 单元='"&combo2.text &"'"&wherestr
end if
if combo3.text<>"" then
wherestr=" and 课时='"&combo3.text &"'"&wherestr
end if
wherestr=" where 1=1"&wherestr
sql="select from 表"&wherestr
if combo1.text<>"" then
wherestr=" and 教材='"&combo1.text &"'"
end if
if combo2.text<>"" then
wherestr=" and 单元='"&combo2.text &"'"&wherestr
end if
if combo3.text<>"" then
wherestr=" and 课时='"&combo3.text &"'"&wherestr
end if
wherestr=" where 1=1"&wherestr
sql="select from 表"&wherestr
展开全部
select * from 表名 where 教材='"& combo1.text & "' and 单元='"& combo2.text & "' and 课时=" & combo3.text
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
非文本直接就id=2
不然就id='2'
不然就id='2'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询