Cách thông thường để làm điều này là như thế này (pseudo-SQL):
create table property_types (
property_id int primary key,
name varchar,
-- more info here
);
create table items (
item_id int primary key,
-- your item table
);
-- this table links a property value with an item
create table item_properties (
item_id int,
property_id int,
property_value varchar,
foreign key fk_item (item_id) references items (item_id),
foreign key fk_property (property_id) references properties (property_id)
);
Theo tùy chọn, bạn có thể có một ràng buộc duy nhất đối với item_properties (item_id, property_id) để đảm bảo rằng mọi thuộc tính chỉ được đặt một lần cho mỗi mặt hàng