How to create article tables, categories and tags?How does database indexing work?How can I prevent SQL injection in PHP?Add a column with a default value to an existing table in SQL ServerInsert results of a stored procedure into a temporary tableHow do I UPDATE from a SELECT in SQL Server?Finding duplicate values in a SQL tablesql select query for one row in one table and multiple row from another tableSelect posts and tags in a single queryHow to import an SQL file using the command line in MySQL?How to join three table by laravel eloquent model

A social experiment. What is the worst that can happen?

My friend sent me a screenshot of a transaction hash, but when I search for it I find divergent data. What happened?

Varistor? Purpose and principle

Engineer refusing to file/disclose patents

A Permanent Norse Presence in America

Will adding a BY-SA image to a blog post make the entire post BY-SA?

How should I respond when I lied about my education and the company finds out through background check?

Do Legal Documents Require Signing In Standard Pen Colors?

When quoting, must I also copy hyphens used to divide words that continue on the next line?

Fly on a jet pack vs fly with a jet pack?

Bob has never been a M before

Greco-Roman egalitarianism

Proving a function is onto where f(x)=|x|.

If a character with the Alert feat rolls a crit fail on their Perception check, are they surprised?

What is this type of notehead called?

ArcGIS not connecting to PostgreSQL db with all upper-case name

What linear sensor for a keyboard?

Indicating multiple different modes of speech (fantasy language or telepathy)

What (else) happened July 1st 1858 in London?

What's the difference between 違法 and 不法?

How can Trident be so inexpensive? Will it orbit Triton or just do a (slow) flyby?

Have I saved too much for retirement so far?

How do you respond to a colleague from another team when they're wrongly expecting that you'll help them?

Could the E-bike drivetrain wear down till needing replacement after 400 km?



How to create article tables, categories and tags?


How does database indexing work?How can I prevent SQL injection in PHP?Add a column with a default value to an existing table in SQL ServerInsert results of a stored procedure into a temporary tableHow do I UPDATE from a SELECT in SQL Server?Finding duplicate values in a SQL tablesql select query for one row in one table and multiple row from another tableSelect posts and tags in a single queryHow to import an SQL file using the command line in MySQL?How to join three table by laravel eloquent model













0















I do not know how correctly integrate all these tables in 2nf SQL. I have some tables. They look like this:



posts:
id, title



categories:
id, name



tags:
id, name



I would like to have one table post-category-tag, with fields:
(id, post_id, category_id, tag_id). Not sure if this is correct, since the article may have a large number of tags. Show me please how to create this table correctly.










share|improve this question
























  • post-category-tag, with fields: (id, post_id, category_id, tag_id) looks like 3nf. What stops you applying this?

    – Derviş Kayımbaşıoğlu
    Mar 8 at 7:09












  • @Simonare Can you show me how some fields look like?

    – Alex Smirnov
    Mar 8 at 7:14











  • Actually, if a post can belong to more than one category, then I would expect there to be a table of post_categories, otherwise I would expect category_id to be a column in posts. Then I would expect there to be another table: post_tags, with no mention of categories in it. Note that there are no 'articles' here.

    – Strawberry
    Mar 8 at 8:21












  • @Strawberry Is it right? post_category (id, post_id, category_id), post_tags(id, post_id, tag_id).

    – Alex Smirnov
    Mar 8 at 10:32











  • It depends on your requirements, but looks plausible to me. And, as mentioned, the surrogate key may not be necessary if the remaining columns serve to uniquely identify each row (a natural composite key).

    – Strawberry
    Mar 8 at 10:34
















0















I do not know how correctly integrate all these tables in 2nf SQL. I have some tables. They look like this:



posts:
id, title



categories:
id, name



tags:
id, name



I would like to have one table post-category-tag, with fields:
(id, post_id, category_id, tag_id). Not sure if this is correct, since the article may have a large number of tags. Show me please how to create this table correctly.










share|improve this question
























  • post-category-tag, with fields: (id, post_id, category_id, tag_id) looks like 3nf. What stops you applying this?

    – Derviş Kayımbaşıoğlu
    Mar 8 at 7:09












  • @Simonare Can you show me how some fields look like?

    – Alex Smirnov
    Mar 8 at 7:14











  • Actually, if a post can belong to more than one category, then I would expect there to be a table of post_categories, otherwise I would expect category_id to be a column in posts. Then I would expect there to be another table: post_tags, with no mention of categories in it. Note that there are no 'articles' here.

    – Strawberry
    Mar 8 at 8:21












  • @Strawberry Is it right? post_category (id, post_id, category_id), post_tags(id, post_id, tag_id).

    – Alex Smirnov
    Mar 8 at 10:32











  • It depends on your requirements, but looks plausible to me. And, as mentioned, the surrogate key may not be necessary if the remaining columns serve to uniquely identify each row (a natural composite key).

    – Strawberry
    Mar 8 at 10:34














0












0








0








I do not know how correctly integrate all these tables in 2nf SQL. I have some tables. They look like this:



posts:
id, title



categories:
id, name



tags:
id, name



I would like to have one table post-category-tag, with fields:
(id, post_id, category_id, tag_id). Not sure if this is correct, since the article may have a large number of tags. Show me please how to create this table correctly.










share|improve this question
















I do not know how correctly integrate all these tables in 2nf SQL. I have some tables. They look like this:



posts:
id, title



categories:
id, name



tags:
id, name



I would like to have one table post-category-tag, with fields:
(id, post_id, category_id, tag_id). Not sure if this is correct, since the article may have a large number of tags. Show me please how to create this table correctly.







mysql sql






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 8 at 7:05







Alex Smirnov

















asked Mar 8 at 6:49









Alex SmirnovAlex Smirnov

13




13












  • post-category-tag, with fields: (id, post_id, category_id, tag_id) looks like 3nf. What stops you applying this?

    – Derviş Kayımbaşıoğlu
    Mar 8 at 7:09












  • @Simonare Can you show me how some fields look like?

    – Alex Smirnov
    Mar 8 at 7:14











  • Actually, if a post can belong to more than one category, then I would expect there to be a table of post_categories, otherwise I would expect category_id to be a column in posts. Then I would expect there to be another table: post_tags, with no mention of categories in it. Note that there are no 'articles' here.

    – Strawberry
    Mar 8 at 8:21












  • @Strawberry Is it right? post_category (id, post_id, category_id), post_tags(id, post_id, tag_id).

    – Alex Smirnov
    Mar 8 at 10:32











  • It depends on your requirements, but looks plausible to me. And, as mentioned, the surrogate key may not be necessary if the remaining columns serve to uniquely identify each row (a natural composite key).

    – Strawberry
    Mar 8 at 10:34


















  • post-category-tag, with fields: (id, post_id, category_id, tag_id) looks like 3nf. What stops you applying this?

    – Derviş Kayımbaşıoğlu
    Mar 8 at 7:09












  • @Simonare Can you show me how some fields look like?

    – Alex Smirnov
    Mar 8 at 7:14











  • Actually, if a post can belong to more than one category, then I would expect there to be a table of post_categories, otherwise I would expect category_id to be a column in posts. Then I would expect there to be another table: post_tags, with no mention of categories in it. Note that there are no 'articles' here.

    – Strawberry
    Mar 8 at 8:21












  • @Strawberry Is it right? post_category (id, post_id, category_id), post_tags(id, post_id, tag_id).

    – Alex Smirnov
    Mar 8 at 10:32











  • It depends on your requirements, but looks plausible to me. And, as mentioned, the surrogate key may not be necessary if the remaining columns serve to uniquely identify each row (a natural composite key).

    – Strawberry
    Mar 8 at 10:34

















post-category-tag, with fields: (id, post_id, category_id, tag_id) looks like 3nf. What stops you applying this?

– Derviş Kayımbaşıoğlu
Mar 8 at 7:09






post-category-tag, with fields: (id, post_id, category_id, tag_id) looks like 3nf. What stops you applying this?

– Derviş Kayımbaşıoğlu
Mar 8 at 7:09














@Simonare Can you show me how some fields look like?

– Alex Smirnov
Mar 8 at 7:14





@Simonare Can you show me how some fields look like?

– Alex Smirnov
Mar 8 at 7:14













Actually, if a post can belong to more than one category, then I would expect there to be a table of post_categories, otherwise I would expect category_id to be a column in posts. Then I would expect there to be another table: post_tags, with no mention of categories in it. Note that there are no 'articles' here.

– Strawberry
Mar 8 at 8:21






Actually, if a post can belong to more than one category, then I would expect there to be a table of post_categories, otherwise I would expect category_id to be a column in posts. Then I would expect there to be another table: post_tags, with no mention of categories in it. Note that there are no 'articles' here.

– Strawberry
Mar 8 at 8:21














@Strawberry Is it right? post_category (id, post_id, category_id), post_tags(id, post_id, tag_id).

– Alex Smirnov
Mar 8 at 10:32





@Strawberry Is it right? post_category (id, post_id, category_id), post_tags(id, post_id, tag_id).

– Alex Smirnov
Mar 8 at 10:32













It depends on your requirements, but looks plausible to me. And, as mentioned, the surrogate key may not be necessary if the remaining columns serve to uniquely identify each row (a natural composite key).

– Strawberry
Mar 8 at 10:34






It depends on your requirements, but looks plausible to me. And, as mentioned, the surrogate key may not be necessary if the remaining columns serve to uniquely identify each row (a natural composite key).

– Strawberry
Mar 8 at 10:34













0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55058100%2fhow-to-create-article-tables-categories-and-tags%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • 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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55058100%2fhow-to-create-article-tables-categories-and-tags%23new-answer', 'question_page');

);

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







Popular posts from this blog

Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived