Jump to content

[SOLVED] Insert data but if theres a dup username just update a column?


Teck

Recommended Posts

What I'm doing is first counting the number of times unique usernames

appear in the "usernames" column, then I'm echoing it out and then later

inserting that data into another table...

 

The Problem:

When the script is run a second time, the data is reinserted, I would

prefer that it update the row if the username exists already & if not

add it in... How can i get it to do that?

 

 

$query = "SELECT username, COUNT(*) AS `col1` FROM test_table GROUP BY username ORDER BY username";
$result = mysql_query($query) or die('Query failed: ' . mysql_error());
while ($row = mysql_fetch_assoc($result)) {
$username = $row['username'];
$col1 = $row['col1'];

echo "$username | $occurs <br>"

$query2 = "INSERT INTO a_test (username, col1) VALUES ('$username', $col1)";
$result2 = mysql_query($query2) or die('Query failed: ' . mysql_error());
}

 

 

Heres an overview of what the table looks like in case it helps

------------------------------------------------

| table: "a_test"                                          |

----------------------------------------------------

| username    | col1    | col2    | col3    | col4    |

----------------------------------------------------

| Aquila          | 42      | 521      | 46321    | 323    |

| Addison      | 35      | 854      | 15145    | 856      |

| Gareth      | 25      | 321      | 87618    | 516      |

| Finn        | 34      | 651      | 81641    | 261      |

| Jesse        | 76      | 452      | 84361    | 369    |

| Bradley    | 39      | 672      | 81651    | 814      |

| Victor      | 65      | 541      | 68932    | 675      |

| Cain        | 20      | 111      | 81118    | 548      |

---------------------------------------------------

 

 

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.