


goods_common (public goods table)
The difference between specifications and attributes is that specifications affect the price, attributes do not affect the price. On the product classification page, there is attribute filtering
Specification name field
Serialize the specification name array and store it in this Field
For example: Array ([1] => color),
key corresponds to the id of the specification table, and value corresponds to the name of the specification table
Specification value field
serializes the value array corresponding to the specification name Store this field
For example: Array ( [1] => Array ( [222] => Blue [224] => Green [225] => Plum Red [226] => Black) ) ,
The key of the first dimension corresponds to the specification table id, the key of the two-dimensional array corresponds to the id of the specification value table, and the value corresponds to the name of the specification value table
Commodity attributes
For example: Array ( [206] => Array ( [name] => Style [3050] => Sweater) [207] => Array ( [name] => Material [3059] => Cotton))
The key of the one-dimensional array corresponds to the attribute The id of the table, the name of the two-dimensional array corresponds to the name of the attribute table, the second element key of the two-dimensional array corresponds to the attribute value table id, and the value corresponds to the name of the attribute value table
Commodity public id
Product name
Product promotion Word
Product category id
Product category name ————Moderate redundancy, reduce the association table
Store id
Store name ————More redundancy, reduce the association table
Brand id
Brand name
Type id ———Associate the type table and associate the attributes under the type
Product main image ———Only save the file name of the uploaded image, the full path is spliced through the program, more flexible
Product content
Product Status ———0 Removed, 1 Normal
Reason for violation
Product review
Reason for review failure
Product lock
Product addition time
Product shelf time
Product price
Market price
Cost price
Discount
Merchant custom number
Freight rate template
Freight rate template name
Is it recommended?
Is free shipping?
Is a VAT invoice issued?
First-level region id
Second-level region id
Store classification The first and last id are separated by,
Top related layout
Bottom related layout
goods (product master table)
Add products of different specifications and generate multiple product information, sku is different,
product SKUid
product Public id
Product name (+ specification name)
Product promotion words
Store id
Store name
Product category id
Product brand ID
Product price
Market price
Merchant custom number
Click quantity
Sales quantity
Collection quantity
Product specification serialization, for example: Array ([222] => blue)
Product inventory
Product main image
Product status
Product review status
Product addition time
Product editing time
First-level region ID
Second-level region ID
Color specification ID
Shipping template ID
Is it recommended?
Is free shipping
Is a VAT invoice issued?
Store classification Use id first and last, separated
good reviews
number of reviews
spec (product specification table)
specification id
specification name
specification sorting
category id
category name
spec_value (product specification value Table)
Specification value id
Specification value name
Specification id
Classification id
Store id
Specification color
Sort
attribute (product attribute table)
Attribute id
Attribute name
Type Id
attribute value column
whether to display
sort
attribute_value (product attribute value table)
attribute value id
attribute value name
attribute id
type id
attribute value sort
category (product Category table)
category id
category name
type id
type name
parent id
sort
title
keyword
description
type (product type table)
type id
Type name
Sort
Category id
Category name
The above introduces the [PHP] B2B2C product module database design, including database design and b2b2c content. I hope it will be helpful to friends who are interested in PHP tutorials.

随着互联网的普及和应用场景的不断增加,数据库设计成为了极其重要的一个问题。而在数据库设计中,冗余字段是一个很重要的问题。冗余字段是指在设计数据库时,出现了重复或不必要的字段。虽然冗余字段可以在一定程度上提高查询效率和速度,但同时也会浪费存储空间和加大维护难度,甚至会影响数据的一致性和安全性。因此,在PHP编程中,应该遵循一定的最佳实践,来解决冗余字段带来的问

利用MongoDB技术开发中遇到的数据库设计问题的解决方案探究摘要:随着大数据和云计算的快速发展,数据库设计在软件开发中显得尤为重要。本文将讨论开发过程中常遇到的数据库设计问题,并通过具体代码示例来介绍MongoDB的解决方案。引言:在软件开发过程中,数据库设计是一个关键的环节。传统的关系型数据库在处理大规模数据时存在一些性能和可扩展性的问题。而MongoD

Golang是一种由Google开发的编程语言,其使用简单、性能优越和跨平台特性使得它在现代Web应用程序开发中越来越受到欢迎。在Web应用程序开发中,数据库设计是非常重要的一部分。在这篇文章中,我们将介绍如何使用Golang开发Web应用程序时进行数据库设计实践。选择数据库首先,我们需要选择一个合适的数据库。Golang支持多种数据库,例如MySQL、Po

PHP和MySQL是一对强大的组合,具有广泛的应用。在互联网行业,PHP和MySQL已经成为了技术栈的标配,大量的网站、Web应用、后台管理系统等应用都采用了这对组合。本文将探讨PHP和MySQL数据库的设计与应用,并介绍一些最佳实践。一、PHP和MySQL数据库的优势PHP是一种开源的、跨平台的、服务端的Web编程语言,拥有广泛的应用场景。MySQL是一种

如何在PHP中实现商品多规格SKU的数据库设计在电商平台中,商品规格是一个非常重要的概念。商品规格可以理解为商品的不同属性和特征,例如尺寸、颜色、重量等。在实际应用中,针对不同的规格,我们往往需要为每一种组合设置不同的价格、库存和图片等信息。这就需要我们设计一个合适的数据库结构来存储和管理商品的规格及其相关信息。本文将介绍如何在PHP中实现商品多规格SKU的

MySQL复合主键在数据库设计中的应用详解MySQL复合主键是指由多个字段组成的主键,通过组合这些字段的值来唯一标识一条记录。在数据库设计中,复合主键的应用非常广泛,特别是在需要唯一标识某个实体的情况下。本文将详细介绍MySQL复合主键的概念、设计原则以及具体的代码示例。一、MySQL复合主键的概念在MySQL中,主键是用来唯一标识表中的每一行数据的字段

步骤:1、需求收集和分析,得到数据字典和数据流图;2、对用户需求综合、归纳与抽象,形成概念模型;3、将概念结构转换为数据模型;4、设计数据库的物理结构;5、建立数据库,编制与调试应用程序,组织数据入库;6、对数据库系统进行评价、调整与修改。

Golang语言特性解读:ORM框架与数据库设计引言:近年来,随着云计算的发展和大数据的兴起,数据库的应用越来越广泛。为了更方便地操作数据库,ORM(对象关系映射)框架应运而生。而Golang作为一门现代化的编程语言,具有强大的并发能力和高效的性能。本文将介绍Golang语言中使用ORM框架进行数据库设计的方法,并附上相关的代码示例。一、ORM框架ORM(O


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
