MySQL DB structure with Main category and several nested sub categoriesdatabase schema for a product with...
What's the point of deactivating Num Lock on login screens?
A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?
How much RAM could one put in a typical 80386 setup?
Can I ask the recruiters in my resume to put the reason why I am rejected?
can i play a electric guitar through a bass amp?
I’m planning on buying a laser printer but concerned about the life cycle of toner in the machine
Theorems that impeded progress
Show that if two triangles built on parallel lines, with equal bases have the same perimeter only if they are congruent.
Do VLANs within a subnet need to have their own subnet for router on a stick?
What does it mean to describe someone as a butt steak?
Mathematical cryptic clues
TGV timetables / schedules?
Why do falling prices hurt debtors?
Arthur Somervell: 1000 Exercises - Meaning of this notation
Font hinting is lost in Chrome-like browsers (for some languages )
Why does Kotter return in Welcome Back Kotter?
What is the offset in a seaplane's hull?
Why can't I see bouncing of a switch on an oscilloscope?
The use of multiple foreign keys on same column in SQL Server
How old can references or sources in a thesis be?
Risk of getting Chronic Wasting Disease (CWD) in the United States?
Are the number of citations and number of published articles the most important criteria for a tenure promotion?
Why not use SQL instead of GraphQL?
is the intersection of subgroups a subgroup of each subgroup
MySQL DB structure with Main category and several nested sub categories
database schema for a product with multiple categories and hierarchical categoriesDb design for a quiz with variable number of answer choices, and each worth different score in a different category?Designing database with Category and Tags for Posts - Seeking for guidance/adviceWhat's the best design for a logical structure that contains different properties of various types for different entity categories? (MySQL or NoSQL)Modelling a relationship involving books, book parts and reviewsStore and search leveled categories with mysql jsonHow can I auto_increment main and sub category conditionnaly?Database design for dealer/eCommerceInteresting Database Designs for Product Catalogue including RecursiveProper creation of a database with categories that have sub-categories
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I am looking to create a set of fields on my webpage identical to what eBay uses on their category selection page when you are selling something. For my purposes I am doing motorcycles, power sports, parts & accessories. So for example I would like to have three very broad categories:
Motorcycles
Powersports
Parts & Accessories
If a user selects Motorcycles it will then ask Brand:
Yamaha
Honda
Kawasaki
Harley-Davidson
Upon selecting a Brand it will then ask for model for that specific brand, so for Yamaha:
YZ
YZF
YFZ
WR
PW
So
Motorcycles -> Brand -> Model
Now if I wanted to add something to parts and accessories it would be something like
Parts & Accessories -> Brand -> Model -> Type of part -> Sub type of part
Same for Powersports:
Powersports -> ATV -> Brand -> Model
I have tried a structure like this
Main Categories(categories):
+-------+---------------------+-----------------------+
| CatID | Category | CatDBTable |
+-------+---------------------+-----------------------+
| 1 | Motorcycles | motorcycle_brands |
| 3 | Parts & Accessories | part_acc_categories |
| 2 | Powersports | powersport_categories |
+-------+---------------------+-----------------------+
Motorcycles(motorycle_brands):
+-------+-------+-------------------------+
| CatID | SubID | SubName |
+-------+-------+-------------------------+
| 1 | 1 | American Classic Motors |
| 1 | 2 | American Ironhorse |
| 1 | 3 | Aprilia |
| 1 | 4 | Benelli |
| 1 | 5 | Big Dog |
+-------+-------+-------------------------+
Motorcycles Model(motorcycle_models):
+---------+--------------+------------+
| ModelID | BrandID | BrandModel |
+---------+--------------+------------+
| 1 | Custom Built | Bobber |
| 2 | Custom Built | Chopper |
| 3 | Custom Built | Pro Street |
| 4 | Custom Built | Other |
| 5 | BMW | F-Series |
+---------+--------------+------------+
Now, this is really simple to maintain keeping everything in separate tables but a nightmare for me to figure out how to query it properly. I have posted this question on another site and a user suggested using one large table which I think is a terrible suggestion but then again I am not a DB admin. I am hoping some of the experts here that do this on a daily basis can help me come up with a structure that is easy to query and maintain at the same time. I hope all of this makes sense. I have search around but can not find anything on doing several nested sub categories only a main category and a sub category.
mysql database-design schema
add a comment |
I am looking to create a set of fields on my webpage identical to what eBay uses on their category selection page when you are selling something. For my purposes I am doing motorcycles, power sports, parts & accessories. So for example I would like to have three very broad categories:
Motorcycles
Powersports
Parts & Accessories
If a user selects Motorcycles it will then ask Brand:
Yamaha
Honda
Kawasaki
Harley-Davidson
Upon selecting a Brand it will then ask for model for that specific brand, so for Yamaha:
YZ
YZF
YFZ
WR
PW
So
Motorcycles -> Brand -> Model
Now if I wanted to add something to parts and accessories it would be something like
Parts & Accessories -> Brand -> Model -> Type of part -> Sub type of part
Same for Powersports:
Powersports -> ATV -> Brand -> Model
I have tried a structure like this
Main Categories(categories):
+-------+---------------------+-----------------------+
| CatID | Category | CatDBTable |
+-------+---------------------+-----------------------+
| 1 | Motorcycles | motorcycle_brands |
| 3 | Parts & Accessories | part_acc_categories |
| 2 | Powersports | powersport_categories |
+-------+---------------------+-----------------------+
Motorcycles(motorycle_brands):
+-------+-------+-------------------------+
| CatID | SubID | SubName |
+-------+-------+-------------------------+
| 1 | 1 | American Classic Motors |
| 1 | 2 | American Ironhorse |
| 1 | 3 | Aprilia |
| 1 | 4 | Benelli |
| 1 | 5 | Big Dog |
+-------+-------+-------------------------+
Motorcycles Model(motorcycle_models):
+---------+--------------+------------+
| ModelID | BrandID | BrandModel |
+---------+--------------+------------+
| 1 | Custom Built | Bobber |
| 2 | Custom Built | Chopper |
| 3 | Custom Built | Pro Street |
| 4 | Custom Built | Other |
| 5 | BMW | F-Series |
+---------+--------------+------------+
Now, this is really simple to maintain keeping everything in separate tables but a nightmare for me to figure out how to query it properly. I have posted this question on another site and a user suggested using one large table which I think is a terrible suggestion but then again I am not a DB admin. I am hoping some of the experts here that do this on a daily basis can help me come up with a structure that is easy to query and maintain at the same time. I hope all of this makes sense. I have search around but can not find anything on doing several nested sub categories only a main category and a sub category.
mysql database-design schema
Don't mix data and metadata -- i.e. don't put what should be data into table or colum names.
– Colin 't Hart
Jun 20 '15 at 18:09
add a comment |
I am looking to create a set of fields on my webpage identical to what eBay uses on their category selection page when you are selling something. For my purposes I am doing motorcycles, power sports, parts & accessories. So for example I would like to have three very broad categories:
Motorcycles
Powersports
Parts & Accessories
If a user selects Motorcycles it will then ask Brand:
Yamaha
Honda
Kawasaki
Harley-Davidson
Upon selecting a Brand it will then ask for model for that specific brand, so for Yamaha:
YZ
YZF
YFZ
WR
PW
So
Motorcycles -> Brand -> Model
Now if I wanted to add something to parts and accessories it would be something like
Parts & Accessories -> Brand -> Model -> Type of part -> Sub type of part
Same for Powersports:
Powersports -> ATV -> Brand -> Model
I have tried a structure like this
Main Categories(categories):
+-------+---------------------+-----------------------+
| CatID | Category | CatDBTable |
+-------+---------------------+-----------------------+
| 1 | Motorcycles | motorcycle_brands |
| 3 | Parts & Accessories | part_acc_categories |
| 2 | Powersports | powersport_categories |
+-------+---------------------+-----------------------+
Motorcycles(motorycle_brands):
+-------+-------+-------------------------+
| CatID | SubID | SubName |
+-------+-------+-------------------------+
| 1 | 1 | American Classic Motors |
| 1 | 2 | American Ironhorse |
| 1 | 3 | Aprilia |
| 1 | 4 | Benelli |
| 1 | 5 | Big Dog |
+-------+-------+-------------------------+
Motorcycles Model(motorcycle_models):
+---------+--------------+------------+
| ModelID | BrandID | BrandModel |
+---------+--------------+------------+
| 1 | Custom Built | Bobber |
| 2 | Custom Built | Chopper |
| 3 | Custom Built | Pro Street |
| 4 | Custom Built | Other |
| 5 | BMW | F-Series |
+---------+--------------+------------+
Now, this is really simple to maintain keeping everything in separate tables but a nightmare for me to figure out how to query it properly. I have posted this question on another site and a user suggested using one large table which I think is a terrible suggestion but then again I am not a DB admin. I am hoping some of the experts here that do this on a daily basis can help me come up with a structure that is easy to query and maintain at the same time. I hope all of this makes sense. I have search around but can not find anything on doing several nested sub categories only a main category and a sub category.
mysql database-design schema
I am looking to create a set of fields on my webpage identical to what eBay uses on their category selection page when you are selling something. For my purposes I am doing motorcycles, power sports, parts & accessories. So for example I would like to have three very broad categories:
Motorcycles
Powersports
Parts & Accessories
If a user selects Motorcycles it will then ask Brand:
Yamaha
Honda
Kawasaki
Harley-Davidson
Upon selecting a Brand it will then ask for model for that specific brand, so for Yamaha:
YZ
YZF
YFZ
WR
PW
So
Motorcycles -> Brand -> Model
Now if I wanted to add something to parts and accessories it would be something like
Parts & Accessories -> Brand -> Model -> Type of part -> Sub type of part
Same for Powersports:
Powersports -> ATV -> Brand -> Model
I have tried a structure like this
Main Categories(categories):
+-------+---------------------+-----------------------+
| CatID | Category | CatDBTable |
+-------+---------------------+-----------------------+
| 1 | Motorcycles | motorcycle_brands |
| 3 | Parts & Accessories | part_acc_categories |
| 2 | Powersports | powersport_categories |
+-------+---------------------+-----------------------+
Motorcycles(motorycle_brands):
+-------+-------+-------------------------+
| CatID | SubID | SubName |
+-------+-------+-------------------------+
| 1 | 1 | American Classic Motors |
| 1 | 2 | American Ironhorse |
| 1 | 3 | Aprilia |
| 1 | 4 | Benelli |
| 1 | 5 | Big Dog |
+-------+-------+-------------------------+
Motorcycles Model(motorcycle_models):
+---------+--------------+------------+
| ModelID | BrandID | BrandModel |
+---------+--------------+------------+
| 1 | Custom Built | Bobber |
| 2 | Custom Built | Chopper |
| 3 | Custom Built | Pro Street |
| 4 | Custom Built | Other |
| 5 | BMW | F-Series |
+---------+--------------+------------+
Now, this is really simple to maintain keeping everything in separate tables but a nightmare for me to figure out how to query it properly. I have posted this question on another site and a user suggested using one large table which I think is a terrible suggestion but then again I am not a DB admin. I am hoping some of the experts here that do this on a daily basis can help me come up with a structure that is easy to query and maintain at the same time. I hope all of this makes sense. I have search around but can not find anything on doing several nested sub categories only a main category and a sub category.
mysql database-design schema
mysql database-design schema
edited Jun 22 '15 at 20:18
RolandoMySQLDBA
144k24228385
144k24228385
asked Mar 7 '14 at 3:48
Yamaha32088Yamaha32088
13716
13716
Don't mix data and metadata -- i.e. don't put what should be data into table or colum names.
– Colin 't Hart
Jun 20 '15 at 18:09
add a comment |
Don't mix data and metadata -- i.e. don't put what should be data into table or colum names.
– Colin 't Hart
Jun 20 '15 at 18:09
Don't mix data and metadata -- i.e. don't put what should be data into table or colum names.
– Colin 't Hart
Jun 20 '15 at 18:09
Don't mix data and metadata -- i.e. don't put what should be data into table or colum names.
– Colin 't Hart
Jun 20 '15 at 18:09
add a comment |
2 Answers
2
active
oldest
votes
I would generalize the design, I.e. instead of a motorcycle_brand table, You would want a category_brand table, and instead of a motorcycle_model table, you would have a category_brand_model table with an fk on the category_brand pk. This allows for several advantages:
Adding new product categories in the future requires only adding records, not the addition of new tables.
If formalizes the relationship hierarchy of category-brand-model instead of relying on shaky and maintenance-intensive query design to do so.
The queries would be very, very simple to write.
To do this, you would combine each of the three category brand tables you have now and create a new table categoy_brand with an fk on catid.
add a comment |
I think that this can be easily done by using just a single table. This table would require three columns i.e. category_id, category_name and parent_category_id.
In this case, you will need to use a self join while querying the database. Querying the database would be very easy with this approach as well. But there is a con to this approach which is that it will be a little performance heavy. The approach suggested by Thomas Cleberg however, is better if you are preferring performance in this case.
In case you want to implement the one table approach, you will have to properly index your table to maximize performance while querying.
Both the approaches have their pros and cons and you must select the approach that best fits your application's performance requirements.
New contributor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "182"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f60373%2fmysql-db-structure-with-main-category-and-several-nested-sub-categories%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I would generalize the design, I.e. instead of a motorcycle_brand table, You would want a category_brand table, and instead of a motorcycle_model table, you would have a category_brand_model table with an fk on the category_brand pk. This allows for several advantages:
Adding new product categories in the future requires only adding records, not the addition of new tables.
If formalizes the relationship hierarchy of category-brand-model instead of relying on shaky and maintenance-intensive query design to do so.
The queries would be very, very simple to write.
To do this, you would combine each of the three category brand tables you have now and create a new table categoy_brand with an fk on catid.
add a comment |
I would generalize the design, I.e. instead of a motorcycle_brand table, You would want a category_brand table, and instead of a motorcycle_model table, you would have a category_brand_model table with an fk on the category_brand pk. This allows for several advantages:
Adding new product categories in the future requires only adding records, not the addition of new tables.
If formalizes the relationship hierarchy of category-brand-model instead of relying on shaky and maintenance-intensive query design to do so.
The queries would be very, very simple to write.
To do this, you would combine each of the three category brand tables you have now and create a new table categoy_brand with an fk on catid.
add a comment |
I would generalize the design, I.e. instead of a motorcycle_brand table, You would want a category_brand table, and instead of a motorcycle_model table, you would have a category_brand_model table with an fk on the category_brand pk. This allows for several advantages:
Adding new product categories in the future requires only adding records, not the addition of new tables.
If formalizes the relationship hierarchy of category-brand-model instead of relying on shaky and maintenance-intensive query design to do so.
The queries would be very, very simple to write.
To do this, you would combine each of the three category brand tables you have now and create a new table categoy_brand with an fk on catid.
I would generalize the design, I.e. instead of a motorcycle_brand table, You would want a category_brand table, and instead of a motorcycle_model table, you would have a category_brand_model table with an fk on the category_brand pk. This allows for several advantages:
Adding new product categories in the future requires only adding records, not the addition of new tables.
If formalizes the relationship hierarchy of category-brand-model instead of relying on shaky and maintenance-intensive query design to do so.
The queries would be very, very simple to write.
To do this, you would combine each of the three category brand tables you have now and create a new table categoy_brand with an fk on catid.
edited Jun 20 '15 at 18:09
Colin 't Hart
6,63682634
6,63682634
answered Mar 8 '14 at 14:44
Thomas ClebergThomas Cleberg
1,314715
1,314715
add a comment |
add a comment |
I think that this can be easily done by using just a single table. This table would require three columns i.e. category_id, category_name and parent_category_id.
In this case, you will need to use a self join while querying the database. Querying the database would be very easy with this approach as well. But there is a con to this approach which is that it will be a little performance heavy. The approach suggested by Thomas Cleberg however, is better if you are preferring performance in this case.
In case you want to implement the one table approach, you will have to properly index your table to maximize performance while querying.
Both the approaches have their pros and cons and you must select the approach that best fits your application's performance requirements.
New contributor
add a comment |
I think that this can be easily done by using just a single table. This table would require three columns i.e. category_id, category_name and parent_category_id.
In this case, you will need to use a self join while querying the database. Querying the database would be very easy with this approach as well. But there is a con to this approach which is that it will be a little performance heavy. The approach suggested by Thomas Cleberg however, is better if you are preferring performance in this case.
In case you want to implement the one table approach, you will have to properly index your table to maximize performance while querying.
Both the approaches have their pros and cons and you must select the approach that best fits your application's performance requirements.
New contributor
add a comment |
I think that this can be easily done by using just a single table. This table would require three columns i.e. category_id, category_name and parent_category_id.
In this case, you will need to use a self join while querying the database. Querying the database would be very easy with this approach as well. But there is a con to this approach which is that it will be a little performance heavy. The approach suggested by Thomas Cleberg however, is better if you are preferring performance in this case.
In case you want to implement the one table approach, you will have to properly index your table to maximize performance while querying.
Both the approaches have their pros and cons and you must select the approach that best fits your application's performance requirements.
New contributor
I think that this can be easily done by using just a single table. This table would require three columns i.e. category_id, category_name and parent_category_id.
In this case, you will need to use a self join while querying the database. Querying the database would be very easy with this approach as well. But there is a con to this approach which is that it will be a little performance heavy. The approach suggested by Thomas Cleberg however, is better if you are preferring performance in this case.
In case you want to implement the one table approach, you will have to properly index your table to maximize performance while querying.
Both the approaches have their pros and cons and you must select the approach that best fits your application's performance requirements.
New contributor
New contributor
answered 8 mins ago
crazyDevelopercrazyDeveloper
1
1
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Database Administrators Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f60373%2fmysql-db-structure-with-main-category-and-several-nested-sub-categories%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Don't mix data and metadata -- i.e. don't put what should be data into table or colum names.
– Colin 't Hart
Jun 20 '15 at 18:09