In case you have your own slow SQL query, you can optimize it automatically here.
For the query above, the following recommendations will be helpful as part of the SQL tuning process.
You'll find 3 sections below:
CREATE INDEX a_idx_aid_other1 ON A (Aid,Other1);
CREATE INDEX a_b_idx_aid ON A_B (Aid);
CREATE INDEX b_idx_bid ON B (BId);
SELECT
TOP (20) A.Aid,
A.Name,
B.Bid,
B.Name
FROM
A
INNER JOIN
A_B
ON A.AId = A_B.Aid
INNER JOIN
A AS AA
ON AA.Aid = A_B.Aid
INNER JOIN
B
ON B.BId = A_B.Bid
WHERE
AA.Aid = @aid
AND A.Other1 = @other1