作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的 WordPress 数据库中创建了两个表。一个包含公司信息(wp_companys),另一个包含产品类型(wp_product_types)。 wp_product_types 基本上只是公司可以分配给他们自己的所有产品类型的列表。
数据库演示:
wp_companies
company_name | member_type | products
-------------------------------------
Google | full |
-------------------------------------
Crunchyroll | full |
product_name |
-----------------
Car Insurance |
-----------------
House Insurance |
-----------------
Life Insurance |
最佳答案
因为你不能在 MySQL 中使用数组,我会使用另一个表(例如 wp_products):
company_name | product_name
---------------------------
Google | Car Insurance
Google | House Insurance
Crunchyroll | Car Insurance
Crunchyroll | House Insurance
Crunchyroll | Life Insurance
关于mysql - 如何在 MySQL 中使用数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61970428/
我是一名优秀的程序员,十分优秀!