Hi All,
using ACCESS 2000 what I want to do is:
UPDATE A SET
A.gACID = (Select G.actionID from G
where A.PID = G.PID
and not G.Flg = true);
Of course I'm using ACCESS so I need to do something like
UPDATE A inner join G on
A.PID = G.PID
where not G.Flg = true
But it wont accept the where clause - But I need the where clause cause there may be many with the G.Flg = True but only one with the G.Flg = False
Thanks for any help
using ACCESS 2000 what I want to do is:
UPDATE A SET
A.gACID = (Select G.actionID from G
where A.PID = G.PID
and not G.Flg = true);
Of course I'm using ACCESS so I need to do something like
UPDATE A inner join G on
A.PID = G.PID
where not G.Flg = true
But it wont accept the where clause - But I need the where clause cause there may be many with the G.Flg = True but only one with the G.Flg = False
Thanks for any help