M
megaranid
Hi,
I have 2 tables:
Table1
ID SS
1 111
2
3
Table2
ID SS FROM TO
4 111 1 3
And I want to Update field SS from Table1 where Table1.ID > Table2.FROM AND
Table1.ID <= Table2.TO
The result should be:
Table1
ID SS
1 111
2 111
3 111
The thing is that Table1 has 7498790 records and the Query that I'm doing is
extremely slow. Can you suggest anything else.
Thanks.
I have 2 tables:
Table1
ID SS
1 111
2
3
Table2
ID SS FROM TO
4 111 1 3
And I want to Update field SS from Table1 where Table1.ID > Table2.FROM AND
Table1.ID <= Table2.TO
The result should be:
Table1
ID SS
1 111
2 111
3 111
The thing is that Table1 has 7498790 records and the Query that I'm doing is
extremely slow. Can you suggest anything else.
Thanks.