SQL UPDATE based on condition

Posted by LtDan on Super User See other posts from Super User or by LtDan
Published on 2012-09-07T14:55:10Z Indexed on 2012/09/07 15:40 UTC
Read the original article Hit count: 154

Filed under:
|
|

We need to update a table with the users id (NBK). The table with NBK also has the user status (0 - 1) and only one user will have 1 at a time. The challenage is to #1 capture the active user #2 update the other table with the user NBK. I hope the code below just has a simple syntex error that I cannot find?

Dim nb As String
Dim NBK As String

nb = [Employees]![NBK] & "' WHERE "
nb = nb & " " & [Employees]![Status] = '1'
NBK = " Update tbl_DateTracking SET NBK = "
NBK = NBK & "'" & nb & "' WHERE "
NBK = NBK & "CaseId = '" & CaseId & "' AND OCC_Scenario = '" & OCC_Scenario & "' ;"

DoCmd.RunSQL nb
DoCmd.RunSQL NBK

© Super User or respective owner

Related posts about updates

Related posts about sql