摘要:
select * from tableA a left join tableB b on a.f_id = b.id; 索引建tableB表上面, 因为left join 注定左表全都有,所以应该关心右边; 结论: left join 索引 建右表; right join 索引建左表。 阅读全文
摘要:
Multiple request sequences that represent a logically related session should be executed with the same HttpContext instance to ensure automatic propag 阅读全文