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
https://forums.phpfreaks.com/topic/42310-solved-unsure-of-what-results-if/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.