S
Serguei Makacharipov
I just found new solution for some problem.
Understand that it is obviously that it is far away to be compared with
American continent discovery but anyway.
As I started to work with Access queries I found that constructions like
this
select * from t1
where t1.id not in
(Select extid from t2)
work very slow.
So i changed it to
SELECT Tbl.*
FROM
(SELECT t1.*, t2.extId FROM t1 LEFT JOIN t2 ON t1.id = t2.Ext.id) As tbl
WHERE tbl.extId is NULL
this kind of statement works hundred times faster than previous one.
Perhaps it will be some use for someone from my letter.
Serguei.
Understand that it is obviously that it is far away to be compared with
American continent discovery but anyway.
As I started to work with Access queries I found that constructions like
this
select * from t1
where t1.id not in
(Select extid from t2)
work very slow.
So i changed it to
SELECT Tbl.*
FROM
(SELECT t1.*, t2.extId FROM t1 LEFT JOIN t2 ON t1.id = t2.Ext.id) As tbl
WHERE tbl.extId is NULL
this kind of statement works hundred times faster than previous one.
Perhaps it will be some use for someone from my letter.
Serguei.