在KingbaseESv8中,表t1由"create table t1(x int, y char(10), z time);"生成,且该表已存储100行记录,以下在修改列的相关定义时可以正确执行的有哪些? A. alter table t1 alter column x type number; B. alter table t1 alter COLUMN y type char(20); C. alter table t1 alter COLUMN z type timestamp; D. alter table t1 add (w timestamp);
时间: 2023-02-08 12:02:09 浏览: 318
修改表 1、添加字段: alter table 表名add column 字段名 数据类型 位置 ; 2、删除字段: a
A. alter table t1 alter column x type number;
B. alter table t1 alter COLUMN y type char(20);
C. alter table t1 alter COLUMN z type timestamp;
D. alter table t1 add (w timestamp);
都可以正确执行。
A.修改字段x类型为number
B.修改字段y的长度为20
C.修改字段z的类型为timestamp
D.在表t1中新增字段w,类型为timestamp
阅读全文