Home Sql Sql-functions MySql Append Codes



MySql Append Codes
Posted on: October 6, 2010 at 12:00 AM
We use CONCAT() function to append the values of two column. In this example, we are concatenating the value of "fname" column and the value of "lname" column for each row having value 'Programmer' in the 'designation' column of the "user" table.

MySql Append Codes

     

This example illustrates how to append the column values.

We use CONCAT() function to append the values of two column. In this example, we are concatenating  the value of "fname" column and the value of "lname" column for each row having value 'Programmer' in the 'designation' column of the "user" table.

Table "user":

Query

 

select * from user;

 

Output

 

+---------+---------+-------------------------------+
| fname   | lname   | designation                   |
+---------+---------+-------------------------------+
| sandeep | suman   | Programmer                    |
| suman   | saurabh | Sr. Graphics Designer         |
| saurabh | ranjan  | Content Writer                |
| ravi    | kant    | Software Developer            |
| deepak  | kumar   | IT Manager                    |
| noor    | ali     | Content Writer                |
| vikash  | kumar   | Content Writer                |
| vineet  | bansal  | Programmer                    |
+---------+---------+-------------------------------+

Query to concatenate fname and lname values:

Query

 

 SELECT CONCAT(fname, " ", lname)
 from user where designation = 'Programmer';
Output

 

+---------------------------+
| CONCAT(fname, " ", lname) |
+---------------------------+
| sandeep suman             |
| vineet bansal             |
+---------------------------+

 

Related Tags for MySql Append Codes:


More Tutorials from this section

Ask Questions?    Discuss: MySql Append Codes  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.