kryptkitten
Registered User.
- Local time
- Today, 05:17
- Joined
- Jul 19, 2010
- Messages
- 34
Hi All,
I have something that's really funky happening with a query that for the life of me I can't seem to fix it or at least once I do it keeps reverting back. I can't seem to replicate what's causing the problem either which is not helping the frustration level at all.
So essentially here is the query as it should be
SELECT Reports.Departments, Reports.[Report Number], Reports.[Revision Number], Reports.Name, Reports.[Effective Date], Reports.Status
FROM Reports
WHERE (((Reports.Departments)="aph") AND ((Reports.Status)="effective")) OR (((Reports.Departments)="aph/ctl") AND ((Reports.Status)="effective"))
ORDER BY Reports.Departments;
Here is what it changes to:
SELECT Reports.Departments, Reports.Departments, Reports.Departments, Reports.Departments, Reports.Departments, Reports.Departments
FROM Reports
WHERE (((Reports.Departments)="aph" And (Reports.Departments)="effective")) OR (((Reports.Departments)="aph/ctl" And (Reports.Departments)="effective"))
ORDER BY Reports.Departments;
I continually go back and change it to the first one and save it and then somehow it randomly keeps changing back to the second query. Am I dealing with a corrupt database or something?
Help please this is really aggravating!
Thanks!
Stacy
I have something that's really funky happening with a query that for the life of me I can't seem to fix it or at least once I do it keeps reverting back. I can't seem to replicate what's causing the problem either which is not helping the frustration level at all.
So essentially here is the query as it should be
SELECT Reports.Departments, Reports.[Report Number], Reports.[Revision Number], Reports.Name, Reports.[Effective Date], Reports.Status
FROM Reports
WHERE (((Reports.Departments)="aph") AND ((Reports.Status)="effective")) OR (((Reports.Departments)="aph/ctl") AND ((Reports.Status)="effective"))
ORDER BY Reports.Departments;
Here is what it changes to:
SELECT Reports.Departments, Reports.Departments, Reports.Departments, Reports.Departments, Reports.Departments, Reports.Departments
FROM Reports
WHERE (((Reports.Departments)="aph" And (Reports.Departments)="effective")) OR (((Reports.Departments)="aph/ctl" And (Reports.Departments)="effective"))
ORDER BY Reports.Departments;
I continually go back and change it to the first one and save it and then somehow it randomly keeps changing back to the second query. Am I dealing with a corrupt database or something?
Help please this is really aggravating!
Thanks!
Stacy