Marcus
Well-known member
I have a query that INNER JOINs both xf_post on post_id and xf_thread on thread_id.
SELECT table.*, xf_post.post_id is 3x faster than SELECT table.*, xf_thread.title
Do you have any idea why that could be possible? The same is for xf_post.* which is three times faster than xf_thread.*
SELECT table.*, xf_post.post_id is 3x faster than SELECT table.*, xf_thread.title
Do you have any idea why that could be possible? The same is for xf_post.* which is three times faster than xf_thread.*