lxl-php第六天

2018-06-03  本文已影响0人  M_8b20

数据库


字段属性

字段约束

     null \ not null   限定是否为空
     default 设置默认值,若是字符串,应加引号
     primary key 主键 一张表只能一个,一般用于id,自动生成
     auto_increment 自增长
     unique key 这个字段不能重复 值是唯一的
     comment 注释

查询语句

    1. select * from mytable -->查询mytable中所有的数据
    2. select id,name,sex from mytable --> 查询mytable中的 id,name,sex
    3. select * from mytable where id >= 20 --> 带条件查询,从mytable中查询 id>=20的所有数据
    4. select * from mytable where id<30 and sex ='女' --> 多条件查询,从mytable中查询id<30 并且 sex是'女'的所有数据

增加语句

    insert into mytable values(null, 值1,值2...)

删除语句

    delete from mytable where id= 20;-->在mytable中 删除id=20的数据

修改语句

    update mytable set name='鲁小小',age=44  where id= 5; -->把mytable中的id=5 的数据修改 name = '鲁小小' age=44

函数

排序

复杂查询

多表查询

上一篇下一篇

猜你喜欢

热点阅读