1) 对京东有什么了解2) 不用自我介绍了3) 问了实习时长和base地4) 问在实习中比较有挑战的技术点5) 联合索引6) 索引失效场景Where 字符串转成数字作比较,索引失效后怎么优化t表有3个字段,A,B,C建了联合索引(A,B,C)Select * from t where a = 3 and b > 5;Select * from t where b > 5 and a = 3;Select * from t where a = 3 and b > 5 and c > 7;Select * from t where a < 3;Select * fro...