数据库

作者: 辣个男人OvO | 来源:发表于2017-02-20 01:39 被阅读0次

    //创建一个数据库

    //create database 数据库名称

    //创建一个数据库列表

    //create tabele(列表名陈)

    //向表中插入数据

    //insert into (表名)values(属性值)

    //查询列表中的数据

    //select(列名称)from表名称【查询条件】

    //例;select name age from student

    //select *from student;(*)表示查找表中所有内容

    //指定条件查找表中所有性别为女的数据

    //select* from student where sex=“女”

    //查找年龄21岁以上的所有人信息

    //select * from student where age>21;

    //查找名字中带有‘王’的所有人信息

    //select * from student where name like “%王%”;

    //查询id小于5且年龄大于20的所有人信息:

    //select * from student where id<5 and age>20;

    //更改表中数据 用“update”

    //把id为5的手机号改为-

    //update student set number=- where id=5;

    //所有人年龄加1

    //update student set age=age+1;

    //将手机号为 13288097888 的姓名改为 "张伟鹏", 年龄改为 19:

    //update student set name=“张伟鹏”age=19 where number=13254515

    //删除 关键字‘delete‘---delete from 表名称 where 删除条件;

    //删除id为2的行

    //delete from student where id=2

    //alter table 语句用于创建后对表的修改;添加

    //alter table [表名] add【列名】 【列数据类型 插入位置】

    //在名为 age 的列后插入列 birthday:

    //alter table student add birthday data age;

    相关文章

      网友评论

          本文标题:数据库

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