美文网首页
SQL基础语句

SQL基础语句

作者: 流泪回忆不如忍痛努力 | 来源:发表于2018-01-13 16:10 被阅读0次

    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基础语句

          本文链接:https://www.haomeiwen.com/subject/dficoxtx.html