在MySQL数据库中,通常使用_______语句来指定一个已有数据库作为当前工作数据库。
A. using
B. used
C. uses
D. use
查看答案
___命令用于删除一个数据库。
A. create database
B. drop database
C. alter database
D. use InnoDB
在创建数据库时,可以使用______子句确保如果数据库不存在就创建它,如果存在就直接使用它。
A. if not exists
B. if exists
C. if not exist
D. if exist
SQI语句中修改表结构的命令是_____。
A. modify table
B. modify structure
C. alter table
D. alter structure
只修改列的数据类型的指令是_____。
A. alter table... alter column
B. alter table... modify column...
C. alter table... update...
D. alter table... update column...