Help, i want to update my table PARKING with the field PARKING_STATUS value UPDATED but I got error. I fetch everything from the same table. All fields at the form are from the same table PARKING, with PK and FK with other table. This is the code:
Private Sub Approve_Btn_Click()
'update data into table(s)
CurrentDb.Execute "UPDATE PARKING"
"SET(parking_id= '" & Me.lot_num_dropdown & "', parking_status = '" & "UPDATED" & "', car_reg_num = '" & Me.car_reg_num_dropdown & "', result_id = '" & Me.result_id_dropdown & "')" & _
"WHERE parking_id = '" & Me.lot_num_dropdown & "'"
End Sub
SETandWHERE.