Blogger Information
Blog 36
fans 2
comment 0
visits 23550
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
2019年11月20号--数据库增删改查
Rambo-Yang
Original
569 people have browsed it

一、数据库增删改查

二、创建数据表

栏目分类表:

文档资讯表:

总结:

  • 1,更新数据,删除数据必须带 where 条件,不然就是修改或删除整表。
  • 2,字段和表都是用反引号包裹,值都是用单引号包裹,数值整型可以不加单引号,多字段多个值用逗号隔开。
  • 3,多表连接查询语法(重点)
    1. SELECT 字段列表
    2. FROM 1 INNER|LEFT|RIGHT JOIN 2
    3. ON 1.字段 = 2.字段;
  • 4,inner join 在连接的时候,mysql会自动选择较小的表来作为驱动表,从而达到减少循环次数的目的。我们在使用 left join 表的时候,默认是使用左表作为驱动表,那么此时左表的大小是我们来控制的,如果控制不当,左表比较大,那么自然循环次数也会变多,效率会下降。所以我们在做连表查询的时候尽可能选择小表作为驱动表,并把条件控制精准。
Correcting teacher:查无此人查无此人

Correction status:qualified

Teacher's comments:完成的不错,继续努力
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post