【发布时间】:2018-07-31 12:14:01
【问题描述】:
我正在使用下面的代码来过滤查询,但它只返回完全匹配。如果我想查看以 John 为名的每个人,我将如何更改?
With Me
.Filter = "[Initiator's Name]='John'"
.FilterOn = True
End With
【问题讨论】:
标签: sql ms-access ms-access-2013
我正在使用下面的代码来过滤查询,但它只返回完全匹配。如果我想查看以 John 为名的每个人,我将如何更改?
With Me
.Filter = "[Initiator's Name]='John'"
.FilterOn = True
End With
【问题讨论】:
标签: sql ms-access ms-access-2013
我明白了
With Me
.Filter = "[Initiator's Name] LIKE '*John*'"
.FilterOn = True
End With
【讨论】: