Jump to content

[SOLVED] Adding content...


Germaris

Recommended Posts

Hi there!

 

Could somebody explain what is the right PHP syntax for a query which can update a MySQL table field by ADDING a content to it WITHOUT deleting/replacing its existing content?

 

Many thanks in advance for your help!

 

Best regards,

 

Gerry

Link to comment
Share on other sites

mysql_query("INSERT INTO <yourtable> (column, column2) VALUES ('first value', 'second value')");

 

edit ohh I see update..

 

mysql_query("UPDATE <yourtable> SET column = 'new  value' WHERE id = 2");

 

you get the idea..  I hope :|

Link to comment
Share on other sites

What you need to do is:

 

read the 'old content' value

add the new content to the old content (or v/v) using the concatenation operator - the dot

UPDATE the database table with the concatenated content

 

Link to comment
Share on other sites

What you need to do is:

 

read the 'old content' value

add the new content to the old content (or v/v) using the concatenation operator - the dot

UPDATE the database table with the concatenated content

 

 

 

Thanks for replying to both of you.

And the winner is...  Andy!

 

I did

UPDATE table SET column = CONCAT(column," string") WHERE column2 = "value";

And it worked nice at the very first attempt.

 

 

 

 

 

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.