Blogger Information
Blog 64
fans 2
comment 3
visits 75737
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP业务逻辑—2018年5月18日09:36:50
清雨的博客
Original
795 people have browsed it

PHP业务逻辑

1、设计数据库:确定表字段

   表字段设计:消除数据冗余

    充分使用关联表,以免重复数据不断在数据库中出现,比如商品的分类信息,与商品建立外键可以有效防止数据冗余

   表字段设计规范:不允许有null、日期字段一般使用int类型

    表字段设计不要带有null,日期往往采用int型 并采用linux的时间戳,进行存放

   建立索引规则:对热点查询字段建立索引

    不多所有字段建立索引,只针对常用的字段建立索引,

  索引的优点(查询快)、缺点(影响添加、更新、删除性能)

Correction status:Uncorrected

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