單項選擇題MySQL實現(xiàn)高可用可以借助下面的哪個工具實現(xiàn)()

A.keepalived
B.Apache
C.Nginx
D.zabbix


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題在MySQL查詢中使用哪個函數(shù)可以查到最大值()

A.insert into student(sal) values(8000);
B.select sun(age)from students;
C.delete from student where id=3;
D.select max(age) from students;

3.單項選擇題刪除score表中的id字段,下列SQL語句中可以實現(xiàn)的是()

A.alter table score drop id;
B.alter table score delete id;
C.alter table score modify id;
D.alter table score change id;

4.單項選擇題刪除不用的表,比如要刪除score表,判斷score表要是存在則刪除,那么下列SQL語句可以實現(xiàn)的是()。

A.drop table to score;
B.drop table score;
C.drop table ifexists score;
D.create table score;