SQL基础语句

create table stuInfo(

#字段名 字段数据类型

#学生ID

stuId int,

#姓名 varchar(30) char(30)

#varchar是一个可变长数据

stuName varchar(30),

#性别 tinyint 1个字节

stuGender tinyint,

#年龄 tinyint 1个字节,保存年龄足够

stuAge tinyint

);

#添加新的字段

alter table stuInfo add stuDesc text;

alter table stuInfo add stuScore int after stuAge;

#修改老字段的数据类型

alter table stuInfo modify stuName char(30);

#删除已有字段

alter table stuInfo drop stuDesc;

#修改已有字段的字段名和数据类型

alter table stuInfo change stuGender stuSex char(1);

#按照数据库字段顺序插入一条完整的数据

insert into stuInfo(stuId, stuName, stuSex, stuAge, stuScore)

values(1, "姓名", '性别', 年龄, 成绩);

#选中一些字段添加数据  剩余数据会按照默认值处理

insert into stuInfo(stuId, stuName) values(2, "姓名");

#不需要指定字段名,但是要求插入的数据是和字段顺序一致

insert into stuInfo values(3, "姓名", '性别', 年龄, 成绩);

insert into stuInfo values(4, "姓名", '性别', 年龄, 成绩);

insert into stuInfo values(5, "姓名", '性别', 年龄, 成绩);

insert into stuInfo values(6, "姓名", '性别', 年龄, 成绩);

你可能感兴趣的:(SQL基础语句)