Foxtable(狐表)用户栏目专家坐堂 → 假设表A有名字1,名字2两列,表B有名字3这一列,如何判断字符串Str是否包含在他们之间,只要有一列包含也可以


  共有2034人关注过本帖树形打印复制链接

主题:假设表A有名字1,名字2两列,表B有名字3这一列,如何判断字符串Str是否包含在他们之间,只要有一列包含也可以

帅哥哟,离线,有人找我吗?
有点甜
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2018/4/24 9:53:00 [显示全部帖子]

Dim str As String = "123"

Dim fdr As DataRow = DataTables("表A").Find("名字1 like '%" & str & "%' Or 名字2 like '%" & str & "%'")

If fdr is Nothing then

    fdr = DataTables("表B").Find("名字3 like '%" & str & "%'")

    If fdr Is Nothing Then

        msgbox("不包含")

        return

    End If

End If

msgbox("包含")


 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2018/4/24 12:09:00 [显示全部帖子]

Dim str As String = "123"

Dim fdr As DataRow = DataTables("表A").Find("名字1 = '" & str & "' Or 名字2 = '" & str & "'")

If fdr is Nothing then

    fdr = DataTables("表B").Find("名字3 = '" & str & "'")

    If fdr Is Nothing Then

        msgbox("不包含")

        return

    End If

End If

msgbox("包含")


 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  3楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2018/4/24 14:50:00 [显示全部帖子]

Dim str As String = "123"

Dim fdr As DataRow = DataTables("表A").Find("名字1 = '" & str & "' Or 名字2 = '" & str & "'")

If fdr is Nothing then

    fdr = DataTables("表B").Find("名字3 = '" & str & "'")

    If fdr Is Nothing Then

        msgbox("不包含")

    else

        msgbox("包含")

    End If

Else

    msgbox("包含")

End If

 


 回到顶部