forumposters
Programmer
Here's my SQL:
Is there anything that sticks out here that could be improved so that this query takes less time to run?
Code:
SELECT *
FROM A, B
WHERE A.address IN ('X')
OR B.address IN ('X')
ORDER BY B.address, A.address,B.[date], A.[date]
Is there anything that sticks out here that could be improved so that this query takes less time to run?