Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将如何在数据库中绘制此设计?
产品可以是实体的、数字的或服务。
数字产品是一种产品。
实物产品就是产品。
服务是一种产品。
是否建议使用不同的唯一标识符而不仅仅是自动递增的 id?id也许是和其他标识符的哈希?
id
自动递增的 id 可以正常工作。我会推荐一个单独的类型表,以防您将来想添加更多。
Product id type_id name 1 2 candy 2 2 car 3 3 yard work Type id name 1 digital 2 physical 3 service