Jump to content

Question about copying data from one table to another.


chelsea7

Recommended Posts

Hello everyone,

 

I have a question about copying data from one table to another. Well actually, I would like to move the data from one table into another.

 

ie. I have a php page when the user can view one image at a time. If the user wishes to keep the image, he/she clicks a button and the image is copied to another database and removed from the current then the next image is displayed and so forth.

 

I tried to do this from the mysql prompt. However, I recieve a duplicate entry \'1\' for key 1. Obviously, I have a unique primary index.

 

Is there a way I could work around this?

 

Thanks

Chelsea 8)

Link to comment
Share on other sites

The primary key is probably also auto increment isn\'t it? There are a couple things you could do. First, you could take off the auto increment on the second table, that should allow you to insert a new record and use a field from the other table. Or you could just insert a new record into the backup db and then pull up the new id that gets created and use that id from then on.

 

Let me know if those wont work or if your thinking of something else and I\'l throw out more suggestions :)

Link to comment
Share on other sites

Yes, the primary key is also auto increment. But if I remove the auto increment, wouldn\'t that allow for duplicates in the table? In this situation, the ID\'s must be unique because they are updated by the user . So let\'s say record ID 5 is to be updated or deleted, there can only be one record ID 5 otherwise two records will be deleted. If I\'m understanding the solution correctly.

 

Is there a way perhaps that I can have php find the last record in the second table and add the next record to it?

 

ie the first table record is 2 the last record in the second table is 68. Can I simply insert the record into the second table to be the 69th record? This way I won\'t have to worry about that error previously stated.

 

Thanks

Chelsea

Link to comment
Share on other sites

yup, that\'s what I meant by

 

Or you could just insert a new record into the backup db and then pull up the new id that gets created and use that id from then on.  

 

If you just insert new data then it will grab the next available id. The problem you are running into is you are trying to insert the id, which it doesn\'t like since the field is auto increment. So just do an insert for everything but the id and then use

 


$newid = mysql_insert_id();

 

to get the new id of the item.

 

I just wasn\'t sure if you absolutely had to keep that same id or not :)

Link to comment
Share on other sites

O.K., yes I did not include the ID field. The record copies into the second table and the auto increment gives the next available ID/record number.

 

But I then noticed something strange. Take a look at this code;

 

$sql = \"INSERT INTO oldtable (`imagefilepath`) select (`imagefilepath`) from newtable where ID=$count\";

 

The above works fine. However, if I add another column see below;

 

$sql = \"INSERT INTO oldtable (`imagefilepath`,`v5`) select (`imagefilepath`,`v5`) from newtable where ID=$count\";

 

Nothing happens. That is the records will not copy to the oldtable. If I just use one column or \'Select *from new table\', that\'s not a problem. Is there any reason why it won\'t take more than one column? It works with the regular \'Insert\' commands I have in php.

 

Thanks

Chelsea

Link to comment
Share on other sites

hmm, actually I\'m surprised that it worked at all heh. mysql doesn\'t support nested subqueries. At least the latest stable doesn\'t. This is how I would do it.

 

[php:1:924c435665]

$query = mysql_fetch_array(mysql_query(\"SELECT imagefilepath, v5 FROM new_table WHERE ID=$count\"));

 

$insert = mysql_query(\"INSERT INTO old_table (\'imagefilepath\', \'v5\') VALUES (\'$query[imagefilepath]\', \'$query[v5]\')\");

 

[/php:1:924c435665]

Link to comment
Share on other sites

Yes, the second field is valid. I\'m going to try the example DylanBliz gave me. I\'ll let you all kno of the outcome.

 

I had this problem similar to this one. The \'Insert\' command would work in direct mode at the mysql prompt but would not work in the php code.

I really didn\'t do anything to correct it. But the following day it worked in the php code.

 

Thanks

Chelsea7

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.