Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Urgent Help in Access Query is needed
Message
From
08/05/2002 13:28:07
Jason Dalio
Northern Interior Regional Health Board
Prince George, British Columbia, Canada
 
General information
Forum:
Microsoft Office
Category:
Access
Miscellaneous
Thread ID:
00654062
Message ID:
00654106
Views:
21
You should be using a join rather then individual AND conditions. try thi instead:

select MapRef, max(LstSlDate) as LstSlD1 into snap_new from snapshot
group by MapRef;

SELECT SnapShot.* INTO snap_new2
FROM snapshot INNER JOIN Snap_New ON (snapshot.LstSlDate = Snap_New.LstSlD1) AND (snapshot.Mapef = Snap_New.MapRef);
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform