mysql常用操作

给指定字段添加注释:

      alter table 表名 modify column 字段名 字段类型(字节数) comment '注释'

alter table student modify column sname VARCHAR(50) comment '学生姓名'

给表格指定字段添加外键约束:

      alter table 表名 add CONSTRAINT 外键名 foreign key(本表字段) REFERENCES 外键表名(外键表字段)

alter table student add CONSTRAINT fk_tid foreign key(tid) REFERENCES teacher(tid)

给数据库修改字符集:

       alter database 数据库名  character set utf8

alter database dbmybatis character set utf8

 

posted @ 2019-09-21 21:29  Steven-Russell  阅读(3)  评论(0编辑  收藏  举报  来源