Jump to content

[SOLVED] lost categories


jakebur01

Recommended Posts

hey, I was doing an update and accidentally gave all my products categories a 0 value.

 

So I want to take the category code "catid" from my old table and update it into my new table where it matches the product number.

 

How could I do this?

Link to comment
Share on other sites

If you have both tables loaded within the same instance of MySQL, you can:

 

USE new_db;
UPDATE products AS new JOIN old_db.products AS old ON new.category=old.category SET new.catid=old.catid;

 

That should work.  You may want to make sure it's backed up, though.

Link to comment
Share on other sites

what if they are in the same database and I just have the tables named differently? The table I screwed up is "books" and the backup table is "item". I deleted all the columns from "item" except the "isbn" column and the "catid" column. Which is the part number and category code.

 

I am wanting to take the catid from table "item" and put it in table "books" where the "isbn" matches up.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.