摘要:
1、修改表名 alter table student rename student_new; 2、修改字段名字 alter table student change sname new_name char(8); 3、修改字段的数据类型 alter table student modify snam 阅读全文
摘要:
1、查看表 show tables; 2、看表结构 DESC 表名; DESCRIBE 表名; 3、以创建学生表为例 create table student( sno char(5) primary key not null, sname char(8) not null, ssex enum(' 阅读全文
摘要:
1、约束关键字介绍 约束条件 说明 PRIMARY KEY 主键约束,用于唯一标识对应的记录 FOREIGN KEY 外键约束 NOT NULL 非空约束 UNIQUE 唯一性约束 DEFAULT 默认值约束,用于设置字段的默认值 AUTO_INCREMENT 自增约束,用于设置表的字段值自动增加 阅读全文
摘要:
1、测试表结果 create table student( sno varchar(20) primary key, sname varchar(20), sex enum('男','女'), age int, sdept varchar(20) ); 2、增 2.1、单条插入 insert int 阅读全文