数据库中如何更改表的字段?

数据库中如何更改表的字段?,第1张

增加表的字段alter table 表名 add 字段名 列属性

alter table xxx1 add age int(11)

修改表的字段(重命名、修改约束)

alter table xxx1 modify age varchar(11) -- 修改约束

alter table xxx1 change age age1 int(11)  -- 字段重命名

删除表的字段

alter table xxx1 drop age1

对mysql数据表中的某个字段的所有数据修改,可以使用update语句,语法是:

update table_name set column = value[, colunm = value...] [where condition]

[ ]中的部分表示可以有也可以没有。

例如:

update students set stu_name = "zhangsan", stu_gender = "m" where stu_id = 5

扩展资料:

SQL修改字段属性总结:

1、修改表中字段类型 可以修改列的类型,是否为空)

Alter table [表名] alter column [列名] 类型

2、向表中添加字段

Alter table [表名] add [列名] 类型

3、删除字段

Alter table [表名] drop column [列名]

4、添加主键

Alter table [表名] add constraint [ 约束名] primary key( [列名])

5、添加唯一约束

Alter table [表名] add constraint [ 约束名] unique([列名])

6、添加表中某列的默认值

Alter table [表名] add constraint [约束名] default(默认值) for [列名]


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9705227.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-01
下一篇 2023-05-01

发表评论

登录后才能评论

评论列表(0条)

保存