如何判断一个字段是否在表中_Access数据库教程
推荐:浅析在Access中模拟SqlServer存储过程翻页sql server中翻页存储过程: Create PROC blog_GetPagedPosts ( @PageIndex int, @PageSize int, @BlogID int=0, @PostType int=-1, @CategoryID int=-1, @Hiding bit =0, @Count int output ) as DECLARE @PageLowerBound int DECLARE @PageUpperBound int S
'判断一个字段是否在表中
Function BlnField(sTblName As String, sFldName As String) As Boolean
'sTblName 源表名
'要查找的字段名
Dim fld As Field
Dim rs As DAO.Recordset
BlnField = False
Set rs = CurrentDb.OpenRecordset(sTblName)
rs.Fields.Refresh
For Each fld In rs.Fields
If fld.Name = sFldName Then
BlnField = True
Exit For
End If
Next
rs.Close
Set rs = Nothing
Set fld = Nothing
End Function
Private Sub 命令0_Click()
'返回True则有此字段,False则无
MsgBox BlnField("tbl1", "ID")
End Sub
分享:浅谈在ACCESS中LIKE的用法Access里like的通配符用法是这样: “?”表示任何单一字符; “*”表示零个或多个字符; “#”表示任何一个数字 所以应该是: select * from databasename where fieldname like '*XX*' 原来在SQL SERVER 里是用%%的,在ACCESS里是用**号的,怪不得都找不到数
- 相关链接:
- 教程说明:
Access数据库教程-如何判断一个字段是否在表中。