首页 > 数据库 > MySQL > 正文

mysql学习笔记

2024-07-24 12:59:28
字体:
来源:转载
供稿:网友

一:删除字段

alter table 表名 drop 字段名;

二:增加新字段

alter table 表名 add 字段名 varchar(255) not null;

三:改变字段名

alter table 表名 change 旧字段名 新字段名 数据类型

四:增加约束

alter table 表名 add constraint 约束名 PRimary key (id);


上一篇:mysql 菜鸟入门

下一篇:MYSQL数据库知识

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表