我想知道是否有可能(或推荐)将一个表聚类到多个集群中?可以说我有一些这样的架构:
Employees (Id_emp, First Name, Last Name, DateOfBirth, Address)
Employment (Id_emp, Data_start, position Date_end, Earnings)
Products (Id_product, Name, Price, Quantity)
Customers (Id_client, Name, Last Name, Address)
Sales (Id_sale, Id_client, Id_product, Number, Date, Id_emp)
我想知道是否可以创建这些集群:
Employees+Employment on Id_emp;
Sales+Products on Id_product;
Sales+Customers on Id_client;
Sales+Employees on Id_emp;
我的问题出现了,因为我不确定我是否能够创建3个集群,这些集群本身都有Sales
。
任何答案都非常欢迎!