E
Eric S.
Hi,
I have two tables that contains almost the same information. The only
difference is that one of the tables (Dagsrapporter) has about 400 more
records than the other. I want to pick out only the records that are not
present in the other table (Dagsrapporter_20050702).
I thought this would work:
SELECT Dagsrapporter.*
FROM Dagsrapporter, Dagsrapporter_20050702
WHERE Dagsrapporter.[Mätar Nr]<>Dagsrapporter_20050702.[Mätar Nr];
But it just loops forever with the same record.
Thank you in advance!
/Eric
I have two tables that contains almost the same information. The only
difference is that one of the tables (Dagsrapporter) has about 400 more
records than the other. I want to pick out only the records that are not
present in the other table (Dagsrapporter_20050702).
I thought this would work:
SELECT Dagsrapporter.*
FROM Dagsrapporter, Dagsrapporter_20050702
WHERE Dagsrapporter.[Mätar Nr]<>Dagsrapporter_20050702.[Mätar Nr];
But it just loops forever with the same record.
Thank you in advance!
/Eric