![]() |
mysql query: concatenating onto an existing field
Lets say I have the field table.field of type mediumtext that already contains a string value. I want to add to the value of the field by concatenating another string on the end of the existing string.
Is there a special query to do this or do I need to concatenate in PHP and then do a regular UPDATE query? thx |
I think you can use the MySQL function CONCAT. Straight from the manual:
http://dev.mysql.com/doc/mysql/en/String_functions.html |
so in short:
[sql]UPDATE table SET field = CONCAT(field, 'additional string')[/sql] ;) |
thx :cheeky:
|
you're welcome Jake :)
|
All times are GMT. The time now is 04:03 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|