單項選擇題在mysql中我們可以在數(shù)據(jù)量不大的時候,使用自帶的()工具來備份數(shù)據(jù)庫。

A.mysqldump
B.source
C.grant
D.revoke


您可能感興趣的試卷

你可能感興趣的試題

2.單項選擇題使用mysql的root用戶給本地用戶jack設(shè)置一個密碼,操作正確的是()

A.set password for jack@localhost = password('123');
B.set password password('123') for jack@localhost;
C.set password 123 for jack@localhost;
D.set password('123') for jack@localhost

3.單項選擇題若想復(fù)制一個和student表結(jié)構(gòu)一樣的表STU,但是不需要復(fù)制數(shù)據(jù),那么下列操作正確的是()

A.create table STU like student
B.create table STU select * from student
C.create table STU as student
D.cp student STU

5.單項選擇題現(xiàn)有表stu,若想刪除stu表中age列,那么下了操作正確的是()

A.UPDATE stuage;
B.DELETE age from stu;
C.ALTER TABLE stu add‘age’;
D.ALTER TABLE stu DROP age;