Global Variables in SQL statement

前端 未结 1 1341
忘掉有多难
忘掉有多难 2020-12-11 22:04

I have the following code in VBA:

Dim strSQL As String
strSQL = \"UPDATE Workstations SET MID = newvalue WHERE MID = tempvalue\"
DoCmd.RunSQL strSQL
<         


        
相关标签:
1条回答
  • 2020-12-11 22:42

    Try this one:

    If MID is number:

    Dim strSQL As String
    strSQL = "UPDATE Workstations SET [MID] = " & newvalue & " WHERE [MID] = " & tempvalue
    DoCmd.RunSQL strSQL
    

    If MID is string (if newvalue/tempvalue doesn't contain single quote '):

    Dim strSQL As String
    strSQL = "UPDATE Workstations SET [MID] = '" & newvalue & "' WHERE [MID] = '" & tempvalue & "'"
    DoCmd.RunSQL strSQL
    

    If MID is string (if newvalue/tempvalue contains single quote ' like newvalue="Mike's car"):

    Dim strSQL As String
    strSQL = "UPDATE Workstations SET [MID] = '" & Replace(newvalue, "'", "''") & "' WHERE [MID] = '" & Replace(tempvalue, "'", "''") & "'"
    DoCmd.RunSQL strSQL
    

    If MID is date:

    Dim strSQL As String
    strSQL = "UPDATE Workstations SET [MID] = #" & newvalue & "# WHERE [MID] = #" & tempvalue & "#"
    DoCmd.RunSQL strSQL
    

    Thanks to @HansUp for pointing out in comments, that

    MID is the name of a function, so it would be safer to bracket or alias that field name in the SQL statement: SET [MID]

    0 讨论(0)
提交回复
热议问题