mysql 数据库中一张 user 表中,其中包含字段 A ,B ,C,字段类型如下:A:int, B:int ,C:int 根据字段 A ,B ,C 按照 ABC 顺序建立复合索引 idx_A_B_C, 以下查询语 句中使用到索引 idx_A_B_C 的语句有哪些( ) 。
A.select *from user where A=1 and B=1 B.select *from user where 1=1 and A=1 and B=1 C.select *from user where B=1 and C=1 D.select *from user where A=1 and C=1正确答案ABD