SELECT l.MD, l.Patient, l.SSN, l.Drug, l.LASTFILL
FROM Locallist6m AS L, blueteammds AS b
WHERE l.md Like (left(b.md,4)+"*") And [md aware]=True
ORDER BY l.md, l.lastfill;
this is my query.
when i take out blueteammds as b and expand b.md to be blueteammds.md it asks me for the value when i try to run the query. Why?
also, on this query, i cannot update fields. i'm using this to pull data for the blueteam, and i want them to open this up then change a value in one column (a yes no). how can i accomplish this?
FROM Locallist6m AS L, blueteammds AS b
WHERE l.md Like (left(b.md,4)+"*") And [md aware]=True
ORDER BY l.md, l.lastfill;
this is my query.
when i take out blueteammds as b and expand b.md to be blueteammds.md it asks me for the value when i try to run the query. Why?
also, on this query, i cannot update fields. i'm using this to pull data for the blueteam, and i want them to open this up then change a value in one column (a yes no). how can i accomplish this?