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 6902405
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:47:38+00:00 2026-05-27T07:47:38+00:00

i made a mistake and i have to split 1 table into 2. i

  • 0

i made a mistake and i have to split 1 table into 2. i have a product table and i need category table. when i started i only had 1 category per product but not (with new business requirement) i need the ability to put a product in multiple category.

i have a product tables that has a category in it.

here’s the table:

product (id, name, category, price etc...)

now, how can i efficiently migrate this without make my site offline?

i have lamp on centos

  • 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-27T07:47:39+00:00Added an answer on May 27, 2026 at 7:47 am

    First make sure your categories are unique. Make sure you don’t have something like:

    productx and produtx
    

    Otherwise, when you will inserts bad categories.

    You will have to do it in step:

    1) Creating the table category

    CREATE TABLE `category` (
      `id` int(10) unsigned NOT NULL auto_increment,
      `name` varchar(40) NOT NULL DEFAULT 'General',
      PRIMARY KEY (`id`),
      UNIQUE KEY `name` (`name`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    

    Create the intersection table since a product can be in multiple category and a category can have multiple product.

    CREATE TABLE `product_category` (
      `product_id` int(10) unsigned NOT NULL,
      `category_id` int(10) unsigned NOT NULL,
     PRIMARY KEY product_category (`product_id`,`category_id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    

    2) inserts the categories into the table.

    INSERT IGNORE INTO category SELECT DISTINCT category from product;
    

    This will insert non duplicate categories into the category table with a unique id.

    Now, you have to inserts these records in the

    INSERT IGNORE INTO `product_category` SELECT `product`.`id` AS `product_id`, `category`.`id` AS `category_id` FROM `category` LEFT JOIN `product` ON (`category`.`name` = `product`.`category`);
    

    3) Now you have to modify your code in order to use the right query:
    Example:

    SELECT 
     /* your fields */
    FROM
    product
    INNER JOIN product_category ON (product.id = product_category.product_id)
    INNER JOIN category ON (category.id = product_category.category_id)
    WHERE ...
    

    4) Now, when you feel comfortable with your code changes, you can drop the unused column:

    ALTER TABLE product DROP COLUMN category;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have made the mistake when starting the coding an iPhone App of not
I need a little heads up on the mistake I have made on this
I have a table which has an auto-increment column and I made a mistake
I am an intermediate C programmer. If you have made any coding mistake that
I made the mistake of modifying my original source after importing it into subversion.
EDIT: I had made a mistake during the debugging session that lead me to
I do not mean the compile errors because I made a syntax mistake or
I have made a mistake in one of the commits. Now I want to
I have made this mistake several times, and found myself referencing This Post every
I made a mistake, and started making commits to the last tag, which lands

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.