Jump to content

[SOLVED] Unsure of what results if...


mem0ri

Recommended Posts

This question isn't so much on a MySQL syntax (that's already working fine), but on a 'what happens if' type situation.

 

I'm using an:

 

INSERT INTO table (cols) VALUES (vars) ON DUPLICATE KEY UPDATE cols=vars

 

However...in my table I have TWO key values...and I'm wondering how the table would react if I had a table with:

 

KEY 1    |    KEY 2

x1              x2

x2              x1

 

And I made this call:

 

INSERT INTO table (key1, key2) VALUES (x1, x1)

ON DUPLICATE KEY UPDATE key1 = x1, key2 = x1

 

Wouldn't two rows call a 'duplicate'?

 

Now...my ideal result would be for them to fold into one row containing the new information...but I know life can't be that easy...

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.