使用命令: alter table 客房信息表 add 备注 varchar(10) 的结果是:
举一反三
- 使用命令:alter table 客房信息表add 备注 varchar(10) 的结果是:( ) A: 新建客房信息表,表中有备注列。 B: 新建客房信息表,表中修改备注列。 C: 修改客房信息表,表中修改备注列。 D: 修改客房信息表,表中增加备注列。
- 在表student中增加一列address,将该列置于phone字段之后,使用语句( )。 A: ADD TABLE student(address varchar(20)); B: ADD TABLE student ALTER(address varchar(20)); C: ALTER TABLE student ADD address varchar(20); D: ALTER TABLE student ADD address varchar(20) AFTER phone;
- 以下不是修改表操作的是( ) A: drop table user; B: alter table user add remark varchar(20); C: alter table user character set utf8; D: alter table user drop remark;
- 如果要为student 表增加一列,列名叫“telephone”,数据类型为可变长度字符串类型,那么利用SQL所写的语句是( ) A: alter table student add telephone varchar(10) B: insert student into values (telephone char(10)) C: add table student alter column telephone varchar(10) D: insert student telephone char(10 )
- 以下可以用来修改表结构的命令是()。 A: alter table student add sphone int B: alter table student add unique(sfzh) C: alter table student drop column saddress D: alter table student alter column sage int