How do I speed up my SQL joins when I use the PFXodbc Driver?
SQL joins are generally quite slow. The speed of SQL joins mostly depends on the query optimizer. Generally, if the joined fields are indexed, the join is faster. You can also experiment with reordering the SQL statement, until you find an order that is faster. (This again depends on the query optimizer).