-- 作者:有点甜
-- 发布时间:2018/12/28 11:52:00
--
要这样合成条件,如
Dim flt As String = "1=1"
If dr("第一列") = nothing Then
flt &= " and 第一列 is null"
else
flt &= " and 第一列 = \'" & dr("第一列") & "\'"
End If
If dr("第二列") = nothing Then
flt &= " and 第二列 is null"
else
flt &= " and 第二列 = \'" & dr("第二列") & "\'"
End If
msgbox(flt)
|