返回数说广场
0
MySQL中,表test(a int,b int,time date)涉及以下3条sql:
select * from test where a=1 and b=1;
select * from test where b=1;
select * from test where b=1 order by time desc;
只建一个索引,如何建最优()
A、idx_ab(a,b)
B、idx_abtime(a,b,time)
C、idx_btime(b,time)
D、idx_ba(b,a)
这道题出的极烂
1
0 862
分享
评论
热门数说


