SQL PHP HTML ASP JavaScript articles and free scripts to download
 
 

Adding string at the end of a field data

We can append a string or data to an existing data of a filed by using concat function of MySQL. Here we are not updating or replacing an existing data with new one, we are just adding the string at the end of the field data.

For example we want to add site signature at the end of the comments posted by users. Here each user posts are different so we can't apply any update command so we will use concat to add the site signature to the each post kept inside a record – field in our update command.

Here is the syntax

concat(field_name,”string to add”)


Now let us see how it is used in a MySQL table query.

update photo_img set dtl=concat(dtl,'site_data to add') where gal_id='22'


The above command will add the string site_data to add at the end of each record dtl filed for which gal_id is equal to 22
Discuss this tutorial at forum

List of SQL Tutorials


Further readings
Update SQL commands
Updating another table with data from main table
Replace SQL to update part of the data of a field
concat: Appending string at the end of a field data
Creating a new table by using data from one table
Copying data from one table to another table
Inserting SUM, AVG data from one table column to other using group by command
 
Scripts
PHP
JavaScript
HOME
SQL Tutorial List
SQL (Home)
SQL Commands
AVG
Alter Table
Between
Count
Copy Table
Create Table
Delete
Distinct
Group by
Having
Insert
Inner Join
IN
Left join
Limit
Like
MAX
MIN
Order By
OR AND
Rand
Replace
Rename Table
Select Query
Sum
Union
Update
Where
Subscribe
Submit your email address and receive article and product notifications. Your email is safe with us.