创建一个电话表tel,根据题目条件,写出相应的命令。教师表:tel (id,name,contact)编号, 姓名,联系方式id为主键,自增整数类型name不允许为空,定长字符串类型,占用8个字符存储空间contact不允许为空,定长字符串类型,占用16个字符存储空间
A. create table tel (id int autoincrement primary key,name char(8) not null,contact char(16) not null)engine=innodb default charset=gbk;
B. create table tel (id int auto_increment primary key,name char(8) null,contact char(16) not null)engine=innodb default charset=gbk;
C. create table tel (id int autoincrement primary key,name char(7) not null,contact char(16) not null)engine=innodb default charset=gbk;
D. create table tel (id int auto_increment primary key,name char(8) not null,contact char(16) not null)engine=innodb default charset=gbk;
下面SELECT查询语句的功能是______。 CREATE TABLE newEmployee AS (SELECT * FROM Employee);
A. 将Employee表中所有记录查询输出到临时表newEmployee中
B. 将Employee表中所有记录查询输出到文本文件newEmployee中
C. 将Employee表中所有记录查询输出到表newEmployee中
D. 语句存在语法错误