Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6997867
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T20:20:15+00:00 2026-05-27T20:20:15+00:00

I have 2 mysql tables and I want that: 1) when I delete an

  • 0

I have 2 mysql tables and I want that:

1) when I delete an article, the associated tags to be automatically deleted

2) when I add/delete a tag, the “hasTags” field from the articles to be auto updated (0 – for 0 tags, 1 – for 1+ tags).

For 1 – I used a foreign key and it works

ALTER TABLE `articles`
  ADD CONSTRAINT `articles_ibfk_1` FOREIGN KEY (`id`) REFERENCES `tags` (`id`) ON DELETE CASCADE;

I don’t know how to do for the second part. It is possible?

The tables are

articles == id | title | content | hasTags

tags == id | articleId | tagname

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T20:20:16+00:00Added an answer on May 27, 2026 at 8:20 pm

    For part 2 you can either do this on your application code, in the part where you also add/delete a tag.

    Update, I would suggest making hastags a reference counter, that way you avoid the problem @James mentioned.

    Or you can create 3 triggers:

    DELIMITER $$
    
    CREATE TRIGGER ai_tags_each AFTER INSERT ON tags FOR EACH ROW
    BEGIN
      UPDATE articles SET hasTags = COALESCE(hastags,0) + 1 WHERE id = NEW.article_id;
    END $$
    
    CREATE TRIGGER ad_tags_each AFTER DELETE ON tags FOR EACH ROW
    BEGIN
      UPDATE articles SET hasTags = hasTags - 1 WHERE id = OLD.article_id;
    END $$
    
    CREATE TRIGGER au_tags_each AFTER UPDATE ON tags FOR EACH ROW
    BEGIN
      UPDATE articles SET hasTags = hasTags - 1 WHERE id = OLD.article_id;
      UPDATE articles SET hasTags = COALESCE(hastags,0) + 1 WHERE id = NEW.article_id;
    END $$
    
    DELIMITER ;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this mysql tables I want to display with jqgrid. The problem appears
I have two mysql tables and i want to merge the results of these
I have two MySQL tables, and I want to find and replace text strings
I'm having the following problem with 2 MySQL tables that have a relation: I
I'm trying to delete orphan entries in a mysql table. I have 2 tables
Possible Duplicate: MySQL delete row from multiple tables I have 5 tables: members member_videos
I have two arrays in two MYSQL tables. I want to loop through the
I have two tables: products(product_id,date) and sex(product_id,sex). I want to DELETE from the products
I have a MySql table where I want to get the count of rows
I have a MySQL table with an auto-incremented integer primary key. I want to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.