一个SQL查询中有两个LIKE条件

时间:2017-04-09 01:52:13

标签: sql vb.net ms-access

我有一个datagridview,我想将其设置为使用文本框搜索数据。 我正在使用vb.net和MS Access。

这是我的SQL代码。当我运行它时,出现错误

  

没有给出一个或多个参数的值

代码:

("select * from itemtbl where (item_id like '%" & TextBox1.Text & "%') or (item_desc like '%" & TextBox1.Text & "%') ", objcon1.mydataconnection)

1 个答案:

答案 0 :(得分:1)

尝试使用Access的通配符, star

("select * from itemtbl where (item_id like '*" & TextBox1.Text & "*') or (item_desc like '*" & TextBox1.Text & "*') ", objcon1.mydataconnection)