trudye10
Programmer
- Sep 8, 2006
- 67
HI Guys, I checked the Advance Search and fashioned my Update/Join after them. But for some reason it is not working.
I created a SELECT query to insure my basic syntax was correct and it ran just fine. I ran a query in Access/SQL to insure my criteria was correct and I got back 2 records just as I did in the SQL Server SELECT.
I am not getting an error msg, I am getting Zero records affected.
Here is my code
Thanx,
Trudye
I created a SELECT query to insure my basic syntax was correct and it ran just fine. I ran a query in Access/SQL to insure my criteria was correct and I got back 2 records just as I did in the SQL Server SELECT.
I am not getting an error msg, I am getting Zero records affected.
Here is my code
Code:
UPDATE MCC_A
SET MCC_A.InActive = 1
FROM CONN.johns.DDSLT AS D
INNER JOIN MCC_A AS M
ON D.LOAN = M.Account_Number
WHERE D.Status <> 'A'
Thanx,
Trudye