Please help me solve this problem in MS Access. I want to update my user table
using the statusid
that I will get in userstatus table
.
This query properly work in MySQL. Why in MS Access not. Inner join with a parameter of string doesn't work.
UPDATE tbl_users AS us
INNER JOIN tbl_userstatus AS ust ON ust.status = "Offline"
SET us.statusid = ust.statusid
WHERE us.username = "francis";