I have an Access Query that I would like to run directly in Query analyzer. Here is my query:
I would like to know if this would run as is or if it needs to be changed. I haven't built the db yet, just trying to look ahead. Thanks.
- If you are flammable and have legs, you are never blocking a fire exit.
Mitch Hedburg
Code:
UPDATE MonthVitalAuth iif(Left([MonthVitalAuth]![CardNo],1)="3", SET MonthVitalAuth.CardNo = Left([MonthVitalAuth]![CardNo],1) & "xxxxxxxxxxx" & Mid([MonthVitalAuth]![CardNo],12,4), SET MonthVitalAuth.CardNo = Left([MonthVitalAuth]![CardNo],1) & "xxxxxxxxxxx" & Mid([MonthVitalAuth]![CardNo],13,4));
- If you are flammable and have legs, you are never blocking a fire exit.
Mitch Hedburg