1. 请做一个 1 分钟自我介绍2. 有联合索引 index_abc(a,b,c),以下 SQL 是否用到索引?语句 3 与 4 性能有何差异? select * from user where a = ""; select * from user where a = "" and b = ""; select * from user where a = "" and c = ""; select * from user where a = "" and d = "...