主题:请高手帮忙
请各位高手帮忙分析一下
strWhere = "where" & colName & "like'%" & colValue & "%'"
Set rs = Nothing
和
strWhere = " where " & colName & " like '%" & colValue & "%'"
Set rs = Nothing
这两种写法,为什么用第一种的时候,老是提示出错,而改成第二种的时假就以顺利通过呢。
strWhere = "where" & colName & "like'%" & colValue & "%'"
Set rs = Nothing
和
strWhere = " where " & colName & " like '%" & colValue & "%'"
Set rs = Nothing
这两种写法,为什么用第一种的时候,老是提示出错,而改成第二种的时假就以顺利通过呢。